- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
SUM TOTAL MEASURE VALUES
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
06-19-2018 08:30 AM
Hi all,
I want to display the sum of a measure but Power BI applies the measure in the total ROW. How can i change it??
There is an example table where TOTAL SUM should be 61 instead of 45.
Current measure is :
% RV = IF([%Global] >= 1,2;1,2*SUM('Merge2'[Peso]);(IF([%Global] >= 1;SUM('Merge2'[Peso]);(IF([%Global] > 0,9;0,5*SUM('Merge2'[Peso]);BLANK())))))
Any tip?
Thanks in advance
Re: SUM TOTAL MEASURE VALUES
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
06-19-2018 08:32 AM
You can display this information in a card.
Re: SUM TOTAL MEASURE VALUES
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
06-19-2018 11:31 PM
I would like to show the sum in this table, there is no way to make it work as intended?
Re: SUM TOTAL MEASURE VALUES
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
06-20-2018 02:34 AM
Hi @mdelasheras,
Can you share a sample? The "Total" has different contexts. The solution could be as follows.
Measure = SUMX ( SUMMARIZE ( 'table'; 'table'[column]; "value"; IF ( [%Global] >= 1,2; 1,2 * SUM ( 'Merge2'[Peso] ); ( IF ( [%Global] >= 1; SUM ( 'Merge2'[Peso] ); ( IF ( [%Global] > 0,9; 0,5 * SUM ( 'Merge2'[Peso] ); BLANK () ) ) ) ) ) ); [value] )
Best Regards,
Dale
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Re: SUM TOTAL MEASURE VALUES
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
06-20-2018 03:37 AM
Hi @v-jiascu-msft,
I tried your measure but im not getting the value im looking for, what i need is to sum the last column ( 5 + 5 + 18 + 10 + 18 +5). With this measure I'm getting a value i don't understand:
Do you need an extended sample?
Re: SUM TOTAL MEASURE VALUES
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
06-20-2018 06:19 AM
Hi @mdelasheras,
It would be better to have a full sample.
Best Regards,
Dale
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.