Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply

sum value over slice

Hi community,


I need calculate a measure with sum the column "Value" over the date filtered, if the Flag = B. I will use this measure in a table vision. For exemplify, I will use this datas:

 

DateFlagItemGroupSubgroupValue
jan/20A0001GROUP1SG110
jan/20A0002GROUP1SG120
jan/20B0001GROUP1SG115
jan/20B0002GROUP1SG122
feb/20A0001GROUP1SG118
feb/20B0002GROUP1SG113
feb/20B0001GROUP1SG130
mar/20A0001GROUP1SG130
mar/20A0002GROUP1SG121
mar/20B0001GROUP1SG119

 


If I filter in slice the dates jan/20 and feb/20, I need the result bellow in the table visual:

DateFlagItemGroupSubgroupValueNewValue
jan/20A0001GROUP1SG11080
jan/20A0002GROUP1SG12080
jan/20B0001GROUP1SG11580
jan/20B0002GROUP1SG12280
feb/20A0001GROUP1SG11880
feb/20B0002GROUP1SG11380
feb/20B0001GROUP1SG13080

 

Just explaining, the value is 80 because the lines with flag B in this filtered period has the values: 15 + 22 + 13 + 30. If I filter jan/20 to mar/20 the new value will be 99 and the lines of mar/20 must appear in table.

 

Anyone help me in this case?

Tks!! 🙂

2 REPLIES 2
mahoneypat
Employee
Employee

Please try this measure expression

 

Total B Flags =
CALCULATE (
SUM ( 'Table'[Value] ),
ALLSELECTED ( 'Table' ),
'Table'[Flag] = "B"
)

 

If this works for you, please mark it as the solution.  Kudos are appreciated too.  Please let me know if not.

Regards,

Pat





Did I answer your question? Mark my post as a solution! Kudos are also appreciated!

To learn more about Power BI, follow me on Twitter or subscribe on YouTube.


@mahoneypa HoosierBI on YouTube


lbendlin
Super User
Super User

something like this:

 

var f = selectedvalue(flag)

return calculate (sum(value),filter(allselected(),f="B"))

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors