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
adam_macs
Helper I
Helper I

IF statement in a measure

Hi, i am trying to write an IF statement in a measure to essentially look at the row and determine if its international or UK. If its international then it should minus the YTD retention % by 0.82, if its UK then minus the YTD retention % by 0.90.

 

The results i am getting are completly wrong which is due to the use of SUMX. Is there another way i can get this IF statement to work?

adam_macs_0-1639154429992.png

Retention Target Diff = 
SUMX(CountryMapping,
IF(CountryMapping[Region_L1]="United Kingdom",
[ACY21 _Retention_YTD]-0.9,
[ACY21 _Retention_YTD]-0.82))
1 ACCEPTED SOLUTION
AlexisOlson
Super User
Super User

I think you intend to sum over regions rather than the rows of CountryMapping.

 

Try this instead:

Retention Target Diff =
SUMX (
    VALUES ( CountryMapping[Region_L1] ),
    IF (
        CountryMapping[Region_L1] = "United Kingdom",
        [ACY21 _Retention_YTD] - 0.9,
        [ACY21 _Retention_YTD] - 0.82
    )
)

View solution in original post

2 REPLIES 2
AlexisOlson
Super User
Super User

I think you intend to sum over regions rather than the rows of CountryMapping.

 

Try this instead:

Retention Target Diff =
SUMX (
    VALUES ( CountryMapping[Region_L1] ),
    IF (
        CountryMapping[Region_L1] = "United Kingdom",
        [ACY21 _Retention_YTD] - 0.9,
        [ACY21 _Retention_YTD] - 0.82
    )
)
ValtteriN
Super User
Super User

Hi,

If your YTD measure is working as intended this structure should do it:

Measure = IF(max(CountryMapping[Region])="United Kingdom",
[ACY21_Retention-YTD]-0.9,[ACY21_Retention-YTD]-0.82)

I hope this helps to solve your issue and if it deos consider accepting this as  a solution!




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

Proud to be a Super User!




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.