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
Cypher294
Frequent Visitor

IF Condition multiple valiues ( without querie editor )

Hello, just have a short question. I am trying to seperate the age of tickets between three different dimensions >5 days >60 days and all the other.

 

I am Using an if condition:

 

TicketAge = IF(Test[WorkDay Count]>5;"Ticket older 5 Days";IF(Test[WorkDay Count]>60;"Ticket older 60 Days";"No Violation"))

 

The unexpected output is that within the visualization the tickets " no vioaltions " and " older 5 days" are shown but the criteria with 60 days will be skipped.

 

I can' use the querie editor for this because of the column " WorkDay Count" is already a calculated one which is not present within the query editor. All other hints I'Ve already checked are if conditions segmented by "," instead of ";" but this is not working and comes up with syntax error messages.

1 ACCEPTED SOLUTION
jthomson
Solution Sage
Solution Sage

You need to change the order your IF statement looks at the data - anything that's more than 60 days is, by definition, more than 5 days and will be flagged as more than 5 days first. Try swapping the 60 days and 5 days bits of the statement.

View solution in original post

2 REPLIES 2
v-yuezhe-msft
Employee
Employee

@Cypher294,

Use the following DAX instead and check if you get expected result.

TicketAge = IF(Test[WorkDay Count]>5 && Test[WorkDay Count]<=60;"Ticket older 5 Days";IF(Test[WorkDay Count]>60;"Ticket older 60 Days";"No Violation"))

Regards,
Lydia

Community Support Team _ Lydia Zhang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
jthomson
Solution Sage
Solution Sage

You need to change the order your IF statement looks at the data - anything that's more than 60 days is, by definition, more than 5 days and will be flagged as more than 5 days first. Try swapping the 60 days and 5 days bits of the statement.

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.