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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

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
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.