<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>Question Re: WEBI aggregation function containing IN and WHERE clause in Technology Q&amp;A</title>
    <link>https://community.sap.com/t5/technology-q-a/webi-aggregation-function-containing-in-and-where-clause/qaa-p/11051503#M4066952</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try following solutions:&lt;/P&gt;&lt;P&gt;=sum(if ([var_diff_days] foreach([dim_expected_income_payment_date])) = 0 then [value] else 0)&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;=sum([value] where ([var_diff_days] foreach([dim_expected_income_payment_date]) = 0))&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 03 Jun 2015 15:11:23 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2015-06-03T15:11:23Z</dc:date>
    <item>
      <title>WEBI aggregation function containing IN and WHERE clause</title>
      <link>https://community.sap.com/t5/technology-q-a/webi-aggregation-function-containing-in-and-where-clause/qaq-p/11051490</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello everyone,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have tried to build a formular that calculates the expected incoming payments for one specific day in a single cell.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The formular works properly if the variable exists in a table with the two for the calculation needed dimensions(dim_expected_income_payment;customer). Although I have inserted theese two contexts in the IN clause of the formular, the correct result is not displayed in a single cell containing the variable. The formular without the WHERE clause is working properly in a single cell. This Displays the total amount of the expected income payments.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My formular is the following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;=Sum([value] In([dim_expected_income_payment];[customer]) Where(DaysBetween([dim_expected_income_payment];[specific_date])=0)) In([dim_expected_income_payment])&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I really dont know why this is not working fine. Does anyone has an answer for that topic?&lt;/P&gt;&lt;P&gt;We are using SAP BI SP05 Patch 4.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help would be appreciated!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;Christopher&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Jun 2015 10:04:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/webi-aggregation-function-containing-in-and-where-clause/qaq-p/11051490</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2015-06-03T10:04:13Z</dc:date>
    </item>
    <item>
      <title>Re: WEBI aggregation function containing IN and WHERE clause</title>
      <link>https://community.sap.com/t5/technology-q-a/webi-aggregation-function-containing-in-and-where-clause/qaa-p/11051491#M4066940</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Change your first In to a ForEach.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Jun 2015 10:19:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/webi-aggregation-function-containing-in-and-where-clause/qaa-p/11051491#M4066940</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2015-06-03T10:19:45Z</dc:date>
    </item>
    <item>
      <title>Re: WEBI aggregation function containing IN and WHERE clause</title>
      <link>https://community.sap.com/t5/technology-q-a/webi-aggregation-function-containing-in-and-where-clause/qaa-p/11051492#M4066941</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mark!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your quick reply!&lt;/P&gt;&lt;P&gt;I have tried your suggestion but this does not work either and Displays only a #notavailable error.&lt;/P&gt;&lt;P&gt;In and ForEach should be same or am I wrong? I thought that the In Operator builds a new context and the ForEach Operator extends an existing context?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;Christopher&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Jun 2015 10:58:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/webi-aggregation-function-containing-in-and-where-clause/qaa-p/11051492#M4066941</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2015-06-03T10:58:09Z</dc:date>
    </item>
    <item>
      <title>Re: WEBI aggregation function containing IN and WHERE clause</title>
      <link>https://community.sap.com/t5/technology-q-a/webi-aggregation-function-containing-in-and-where-clause/qaa-p/11051493#M4066942</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, In ignores the objects in the block, whereas ForEach adds to those in the block.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I should have asked, what objects are present in your block?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Jun 2015 11:30:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/webi-aggregation-function-containing-in-and-where-clause/qaa-p/11051493#M4066942</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2015-06-03T11:30:41Z</dc:date>
    </item>
    <item>
      <title>Re: WEBI aggregation function containing IN and WHERE clause</title>
      <link>https://community.sap.com/t5/technology-q-a/webi-aggregation-function-containing-in-and-where-clause/qaa-p/11051494#M4066943</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Okay, the specific problem is that the formular does not work in an single cell of a cross table. So there is no block correct? Because of this single cell I have used the In operator.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In a table with customer, dim_expected_income_payment and the variable with the formular does it work, but I want to make it work in a single cell of a cross table. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Jun 2015 12:22:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/webi-aggregation-function-containing-in-and-where-clause/qaa-p/11051494#M4066943</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2015-06-03T12:22:34Z</dc:date>
    </item>
    <item>
      <title>Re: WEBI aggregation function containing IN and WHERE clause</title>
      <link>https://community.sap.com/t5/technology-q-a/webi-aggregation-function-containing-in-and-where-clause/qaa-p/11051495#M4066944</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;just try to create one variable first&lt;/P&gt;&lt;P&gt;var_diff_days = DaysBetween([dim_expected_income_payment];[specific_date])&lt;/P&gt;&lt;P&gt;Now create your final formula like &lt;/P&gt;&lt;P&gt;=Sum([value] In([dim_expected_income_payment];[customer]) &lt;BR /&gt;Where(var_diff_days in ([dim_expected_income_payment];[customer]) = 0)&lt;BR /&gt; In([dim_expected_income_payment])&lt;/P&gt;&lt;P&gt;Now here you are providing output context by using In([dim_expected_income_payment])&lt;BR /&gt;so you have to drag the [dim_expected_income_payment] object first and then you can apply the following formula&lt;/P&gt;&lt;P&gt;But if you want final outpul in single blank cell then you have to apply following formula in black cell&lt;BR /&gt;==Sum([value] In([dim_expected_income_payment];[customer]) &lt;BR /&gt;Where(var_diff_days in ([dim_expected_income_payment];[customer]) = 0)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;SB&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Jun 2015 12:33:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/webi-aggregation-function-containing-in-and-where-clause/qaa-p/11051495#M4066944</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2015-06-03T12:33:35Z</dc:date>
    </item>
    <item>
      <title>Re: WEBI aggregation function containing IN and WHERE clause</title>
      <link>https://community.sap.com/t5/technology-q-a/webi-aggregation-function-containing-in-and-where-clause/qaa-p/11051496#M4066945</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi swapnil,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank you for your quick reply. I have tried your proposal but it does not work either with the extra variable. Do you have any further ideas? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Jun 2015 13:37:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/webi-aggregation-function-containing-in-and-where-clause/qaa-p/11051496#M4066945</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2015-06-03T13:37:08Z</dc:date>
    </item>
    <item>
      <title>Re: WEBI aggregation function containing IN and WHERE clause</title>
      <link>https://community.sap.com/t5/technology-q-a/webi-aggregation-function-containing-in-and-where-clause/qaa-p/11051497#M4066946</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you please show me the snapshot or error or warning you are getting?&lt;/P&gt;&lt;P&gt;That will help to understand the problem&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Jun 2015 13:43:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/webi-aggregation-function-containing-in-and-where-clause/qaa-p/11051497#M4066946</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2015-06-03T13:43:24Z</dc:date>
    </item>
    <item>
      <title>Re: WEBI aggregation function containing IN and WHERE clause</title>
      <link>https://community.sap.com/t5/technology-q-a/webi-aggregation-function-containing-in-and-where-clause/qaa-p/11051498#M4066947</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here is a screenshot for you:&lt;/P&gt;&lt;P&gt;I have edited my Formular for the blank cell (expected sum for 02.06.15) in the way you told me.&lt;/P&gt;&lt;P&gt;=&lt;STRONG&gt;Sum([value] In([dim_expected_income_payment];[customer]) Where([var_date_diff] In([dim_expected_income_payment];[customer])=0)) In([dim_expected_income_payment])&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/jiveimages/717209" width="450" /&gt;&lt;/P&gt;&lt;P&gt;Please take a look at the "expected sum for 02.06.15" column in the table below the blank cell. The Formular of the column is:&lt;/P&gt;&lt;P&gt;=&lt;STRONG&gt;Sum([value] In([dim_expected_income_payment];[customer]) Where((DaysBetween([dim_expected_income_payment];[selected_date]))=0)) In([dim_expected_income_payment])&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;I dont know why this is working in the table, but not in a blank cell.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Jun 2015 14:07:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/webi-aggregation-function-containing-in-and-where-clause/qaa-p/11051498#M4066947</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2015-06-03T14:07:52Z</dc:date>
    </item>
    <item>
      <title>Re: WEBI aggregation function containing IN and WHERE clause</title>
      <link>https://community.sap.com/t5/technology-q-a/webi-aggregation-function-containing-in-and-where-clause/qaa-p/11051499#M4066948</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you can try simply following formula&lt;/P&gt;&lt;P&gt;var_diff_days = DaysBetween([dim_expected_income_payment];[specific_date])&lt;/P&gt;&lt;P&gt;then use the following formula:&lt;/P&gt;&lt;P&gt;=Sum([value] &lt;BR /&gt;Where(var_diff_days = 0))&lt;/P&gt;&lt;P&gt;or try also &lt;BR /&gt;=Sum([value] )&lt;BR /&gt;Where(var_diff_days = 0)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Jun 2015 14:15:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/webi-aggregation-function-containing-in-and-where-clause/qaa-p/11051499#M4066948</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2015-06-03T14:15:27Z</dc:date>
    </item>
    <item>
      <title>Re: WEBI aggregation function containing IN and WHERE clause</title>
      <link>https://community.sap.com/t5/technology-q-a/webi-aggregation-function-containing-in-and-where-clause/qaa-p/11051500#M4066949</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi swapnil,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;your two proposals does not work. &lt;SPAN __jive_emoticon_name="sad" __jive_macro_name="emoticon" class="jive_macro jive_emote" src="https://community.sap.com/1291/images/emoticons/sad.gif"&gt;&lt;/SPAN&gt; It displays online an empty cell when I insert the formular in the blank cell.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edit: Is it possible to add a In Operator to the DaysBetween function?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Jun 2015 14:22:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/webi-aggregation-function-containing-in-and-where-clause/qaa-p/11051500#M4066949</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2015-06-03T14:22:30Z</dc:date>
    </item>
    <item>
      <title>Re: WEBI aggregation function containing IN and WHERE clause</title>
      <link>https://community.sap.com/t5/technology-q-a/webi-aggregation-function-containing-in-and-where-clause/qaa-p/11051501#M4066950</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you please first check the result for variable var_diff_days = DaysBetween([dim_expected_income_payment];[specific_date]).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just drag this variable in your table and please attanch the snapshot for same.&lt;/P&gt;&lt;P&gt;I want to check what is the result of newly created variable.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Jun 2015 14:45:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/webi-aggregation-function-containing-in-and-where-clause/qaa-p/11051501#M4066950</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2015-06-03T14:45:11Z</dc:date>
    </item>
    <item>
      <title>Re: WEBI aggregation function containing IN and WHERE clause</title>
      <link>https://community.sap.com/t5/technology-q-a/webi-aggregation-function-containing-in-and-where-clause/qaa-p/11051502#M4066951</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;here is the screenshot.It looks like the var_diff_days is correct.&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/jiveimages/717269" width="450" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Jun 2015 14:51:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/webi-aggregation-function-containing-in-and-where-clause/qaa-p/11051502#M4066951</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2015-06-03T14:51:31Z</dc:date>
    </item>
    <item>
      <title>Re: WEBI aggregation function containing IN and WHERE clause</title>
      <link>https://community.sap.com/t5/technology-q-a/webi-aggregation-function-containing-in-and-where-clause/qaa-p/11051503#M4066952</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try following solutions:&lt;/P&gt;&lt;P&gt;=sum(if ([var_diff_days] foreach([dim_expected_income_payment_date])) = 0 then [value] else 0)&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;=sum([value] where ([var_diff_days] foreach([dim_expected_income_payment_date]) = 0))&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Jun 2015 15:11:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/webi-aggregation-function-containing-in-and-where-clause/qaa-p/11051503#M4066952</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2015-06-03T15:11:23Z</dc:date>
    </item>
    <item>
      <title>Re: WEBI aggregation function containing IN and WHERE clause</title>
      <link>https://community.sap.com/t5/technology-q-a/webi-aggregation-function-containing-in-and-where-clause/qaa-p/11051504#M4066953</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have tried both solutions and the result is a multivalue error.&lt;/P&gt;&lt;P&gt;I think we have to add the context to the where clause or am I wrong?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Something like:&lt;/P&gt;&lt;P&gt;=Sum([value] In([dim_expected_income_payment_date];[customer]) Where(DaysBetween([dim_expected_income_payment_date];[selected_date])=0) &lt;STRONG&gt;In([dim_expected_income_payment_date])&lt;/STRONG&gt;) In([dim_expected_income_payment_date])&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Jun 2015 15:25:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/webi-aggregation-function-containing-in-and-where-clause/qaa-p/11051504#M4066953</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2015-06-03T15:25:43Z</dc:date>
    </item>
    <item>
      <title>Re: WEBI aggregation function containing IN and WHERE clause</title>
      <link>https://community.sap.com/t5/technology-q-a/webi-aggregation-function-containing-in-and-where-clause/qaa-p/11051505#M4066954</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A __default_attr="988387" __jive_macro_name="user" class="jive_macro_user jive_macro" data-orig-content="Christopher Werning" href="https://community.sap.com/" modifiedtitle="true" title="Christopher Werning"&gt;&lt;/A&gt; try the following,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;create a dimension (say, ExpectedDateLocal)&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; =ToDate("11-06-2015";"MM-dd-yyyy")&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;create a measure (say, AmountOnDate)&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; =Sum(If&amp;nbsp; DaysBetween([Expected Date];[ExpectedDateLocal])=0 Then [Amountpayable] Else 0)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can change the expected date as required and you will get the right values as required. attached is the screenshot for your reference.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/jiveimages/717271" width="450" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Jun 2015 18:08:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/webi-aggregation-function-containing-in-and-where-clause/qaa-p/11051505#M4066954</guid>
      <dc:creator>former_member207052</dc:creator>
      <dc:date>2015-06-03T18:08:02Z</dc:date>
    </item>
    <item>
      <title>Re: WEBI aggregation function containing IN and WHERE clause</title>
      <link>https://community.sap.com/t5/technology-q-a/webi-aggregation-function-containing-in-and-where-clause/qaa-p/11051506#M4066955</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank you for your reply and proposal. I have tried your solution and the formular works well as part of the table, but if the formular is inserted into a blank cell a #MULTIVALUE error is displayed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I really dont know whats going on here, I would appreciate any further information.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;Christopher Werning&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Jun 2015 13:48:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/webi-aggregation-function-containing-in-and-where-clause/qaa-p/11051506#M4066955</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2015-06-05T13:48:24Z</dc:date>
    </item>
    <item>
      <title>Re: WEBI aggregation function containing IN and WHERE clause</title>
      <link>https://community.sap.com/t5/technology-q-a/webi-aggregation-function-containing-in-and-where-clause/qaa-p/11051507#M4066956</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Once you use any aggregation function (like min,max,sum, average etc) there should not be any "Multivalue" error, simply because no matter the size of your data set the result will &lt;STRONG&gt;&lt;EM&gt;always&lt;/EM&gt;&lt;/STRONG&gt; be one number.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you confirm if your value field is a measure? If for some reason, you have defined it as dimension (or string) try using ToNumber. Other than this I cannot think of any reason why you are getting the Multivalue error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try to prepare a sample data where you/we can replicate the error and post it here to diagnose the issue.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Jun 2015 17:09:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/webi-aggregation-function-containing-in-and-where-clause/qaa-p/11051507#M4066956</guid>
      <dc:creator>former_member207052</dc:creator>
      <dc:date>2015-06-05T17:09:51Z</dc:date>
    </item>
  </channel>
</rss>

