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
GJLeslie
Regular Visitor

Sum of a measure in row total

Hi,

 

Hoping someone can help!

 

I have a very simple measure based on a set of data that I want a trigger above 2499 as a value:

 

Trigger = if([Total Business Miles]>2499, 1,0)

 

All works well but then I am looking at it monthly and want to know how many of the last three months this has been reached. The total is showing 1 though as it is treating that as the measure also. Thus if the trigger is breached 3 times I want the total to be 3 not 1.

 

Does that make sense? Can anyone help

 

Many thanks

1 ACCEPTED SOLUTION

Try to change the ALL ( 'Dates'[MonthName] ) to

ALLSELECTED( 'Dates'[MonthName] )

Regards,
MFelxi

Regards

Miguel Félix


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!

Check out my blog: Power BI em Português



View solution in original post

4 REPLIES 4
MFelix
Super User
Super User

Hi @GJLeslie,

 

You need to create a measure like this:

Trigger_Count =
IF (
    HASONEVALUE ( 'Bussines Miles'[Total Bussines Miles] ),
    [Trigger],
    SUMX ( ALL ( 'Bussines Miles'[Date] ), [Trigger] )
)

Final result below (don't know if want to use a table with date / trigger):

trigger.png

 

Regard,

MFelix


Regards

Miguel Félix


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!

Check out my blog: Power BI em Português



@MFelixMany thanks works a treat ! One slight build - I select months within years but the total is giving me the full year - is there a way of fixing that? Viusal:

 

Capture.PNG

The current formula I have is:

 

Trigger Count = IF (
    HASONEVALUE ( 'Internal Mileage Report'[Business Miles] ),
    [BM Trigger],
    SUMX ( ALL ( 'Dates'[MonthName] ), [BM Trigger] )
)

 

Thus when I click on October it is giving me the count for the full year

 

Hope you can help!

 

Cheers

Try to change the ALL ( 'Dates'[MonthName] ) to

ALLSELECTED( 'Dates'[MonthName] )

Regards,
MFelxi

Regards

Miguel Félix


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!

Check out my blog: Power BI em Português



@MFelixMagic - many thanks

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.