Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now
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.
Solved! Go to Solution.
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.
@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
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.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 48 | |
| 45 | |
| 41 | |
| 20 | |
| 17 |
| User | Count |
|---|---|
| 69 | |
| 64 | |
| 32 | |
| 31 | |
| 27 |