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
Anonymous
Not applicable

How do I calculate multiple measures based on data that ignore visual filter context?

I have a dataset storing lists of items that appeared on invoices along with my desired result.

 

Picture1.png

I am wanting to create the following measures in Power BI and display them in a table:

 

  • [Alert Total] (Measure #1) calculates the total for a given indicator on a given invoice (e.g., "B" on Invoice #1001).
  • [All Alerts Total] (Measure #2) calculates the total for all items on an invoice that were flagged with an "indicator" ([Indicator]<>"")
  • [Invoice Total] (Measure #3) calculates the total for the invoice as a whole.

I assume this will utilize a CALCULATE function in Power BI, but I cannot for the life of me get it to work as the measures always respect the current filter context.

1 ACCEPTED SOLUTION

@Anonymous try following for all alerts

 

All Alerts Total = 
CALCULATE( 
    [Sum],  
    ALLEXCEPT( Table1, Table1[Invoice] ),
    NOT ISBLANK( Table1[Indicator] ), 
    NOT Table1[Indicator] = "" 
) * 
DIVIDE( [IsIndicator], [IsIndicator] )


Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!

Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤


Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.

View solution in original post

6 REPLIES 6
parry2k
Super User
Super User

@Anonymous just to confirm your data is from A to D and you want to achieve F to J, correct?



Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!

Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤


Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.

Anonymous
Not applicable

@parry2k , that is correct. Thank you for making that clarification.

@Anonymous solution attached, I have created 5 measure,  3 for alert and 2 base measures. cheers!!



Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!

Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤


Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.

Anonymous
Not applicable

@parry2k,

 

Thank you for providing that example. Very excited about applying these measures.

 

I did notice one thing in the attached file. The All Alerts Total measure does not appear to be calculating what all of the alerts total up to. For 1001, the desired result would be 43 since there are three alerts and each item total adds up to 43 (25 + 10 + 8). Is there any way to correct this?

@Anonymous try following for all alerts

 

All Alerts Total = 
CALCULATE( 
    [Sum],  
    ALLEXCEPT( Table1, Table1[Invoice] ),
    NOT ISBLANK( Table1[Indicator] ), 
    NOT Table1[Indicator] = "" 
) * 
DIVIDE( [IsIndicator], [IsIndicator] )


Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!

Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤


Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.

Anonymous
Not applicable

@parry2k, that is correct. Thank you for clarifying.

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.