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

Multiple IF statement

I am trying to do a nested if statement to help me categorise some data in a calculated column

 

Formula for Calculated colunm just for reference

SUMX ( 'Summary', IF ( ISERROR ( VALUE ( 'Summary'[UPRN] ) ), 1 , BLANK() ) )

The idea is to create these groups based on a numerical value.

 

0-5 – Up To Five

6-10 Between Six and Ten

10-20 Between Ten and Twenty

30+ Thirty and above

 

Is an nested if statement the best way to achieve this. I initially tried grouping the data but had little success.

1 ACCEPTED SOLUTION
Mariusz
Community Champion
Community Champion

Hi @Anonymous 

 

You can try SWITCH like below.

Column = 
VAR x = 'Table'[Value]
RETURN 
SWITCH(
    TRUE(),
    x >= 0 && x <= 5, "Up To Five",
    x >= 6 && x <= 10, "Between Six and Ten",
    x >= 10 && x <= 20, "Between Ten and Twenty",
    "30+ Thirty and above"
)

 

Best Regards,
Mariusz

If this post helps, then please consider Accepting it as the solution.

Please feel free to connect with me.
Mariusz Repczynski

 

View solution in original post

1 REPLY 1
Mariusz
Community Champion
Community Champion

Hi @Anonymous 

 

You can try SWITCH like below.

Column = 
VAR x = 'Table'[Value]
RETURN 
SWITCH(
    TRUE(),
    x >= 0 && x <= 5, "Up To Five",
    x >= 6 && x <= 10, "Between Six and Ten",
    x >= 10 && x <= 20, "Between Ten and Twenty",
    "30+ Thirty and above"
)

 

Best Regards,
Mariusz

If this post helps, then please consider Accepting it as the solution.

Please feel free to connect with me.
Mariusz Repczynski

 

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.