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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
rksharma86
Frequent Visitor

Calculated column with switch expression is not returning what I need.

Problem :  I want to create a calculated column by checking the value comparing the value of a cases column of the current year(2023) and return the same value for thhat given ID for all year.


My Approach: I am trying to create a calculated column (Segment) with the below expression and having a trouble to get the desired outcome of the calculated column

 

Segment = 
SWITCH (
TRUE(),
Table[cases] >= 100, "Very High",
Table[cases] >= 50, "High",
Table[cases] >= 20, "Medium",
"Low"
)

 

I am geeting the result as below

 

ID Cases Fiscal Year Segment
1 785.55 2023 Very High
1 315.1 2022 Very High
1 7.23 2021 Low
1 1.37 2020 Low
2 5.73 2023 Low
2 3.93 2022 Low
2 7.05 2021 Low
2 6.01 2020 Low
3 35.58 2023 Medium
3 19.57 2022 Low
3 21.96 2021 Medium
3 4.36 2020 Low


Desired Outcome I want is below 

 

ID Cases Fiscal Year Segment
1 785.55 2023 Very High
1 315.1 2022 Very High
1 7.23 2021 Very High
1 1.37 2020 Very High
2 5.73 2023 Low
2 3.93 2022 Low
2 7.05 2021 Low
2 6.01 2020 Low
3 35.58 2023 Medium
3 19.57 2022 Medium
3 21.96 2021 Medium
3 4.36 2020 Medium

 

I am not sure how can I get the desired column.

1 ACCEPTED SOLUTION
FreemanZ
Super User
Super User

hi @rksharma86 ,

 

not sure if i fully get you, try like:

column = 
VAR _total = 
SUMX(
    FILTER(
        data, 
        data[ID]=EARLIER(data[ID])
            &&data[Fiscal Year]<MAX(data[Fiscal Year])
    ),
    data[cases]
)
VAR _result =
SWITCH(
    TRUE(),
    _total>=100, "Very High", 
    _total>=50, "High",
    _total>=20, "Medium",
    "Low"
)
RETURN _result

 

it worked like:

FreemanZ_0-1699427462291.png

 

View solution in original post

1 REPLY 1
FreemanZ
Super User
Super User

hi @rksharma86 ,

 

not sure if i fully get you, try like:

column = 
VAR _total = 
SUMX(
    FILTER(
        data, 
        data[ID]=EARLIER(data[ID])
            &&data[Fiscal Year]<MAX(data[Fiscal Year])
    ),
    data[cases]
)
VAR _result =
SWITCH(
    TRUE(),
    _total>=100, "Very High", 
    _total>=50, "High",
    _total>=20, "Medium",
    "Low"
)
RETURN _result

 

it worked like:

FreemanZ_0-1699427462291.png

 

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.