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

DAX IF Calculation error

Hi, 

 

I have been using the 'IF' calculation for a report i am working on. The calculation is using categorising time values into a time period. 

 

For example,

 

IF('_____________'[_______]}>("00:00:00") && [_______]<("00:04:59"),("< 5 mins), and so on..

 

This calculation is working fine for each Processing time (e.g. < 5 mins, 5-10 mins, etc). However, Power BI is not categorising the values that have '59' as the seconds (e.g. 00:04:59, 00:05:59, etc.). All other values are being put into the correct categories but not these sort of values. I have changed these firgures but the values with "59" as the seconds are being put into a (blank) category. 

 

Hope this make sense.

 

Thanks 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Replace the < with <= or if you want to keep the < change the comparison value:

 

IF('_____________'[_______]}>("00:00:00") && [_______] <= ("00:04:59"),("< 5 mins)

 

IF('_____________'[_______]}>("00:00:00") && [_______] < ("00:05:00"),("< 5 mins)

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Replace the < with <= or if you want to keep the < change the comparison value:

 

IF('_____________'[_______]}>("00:00:00") && [_______] <= ("00:04:59"),("< 5 mins)

 

IF('_____________'[_______]}>("00:00:00") && [_______] < ("00:05:00"),("< 5 mins)

IF('_____________'[_______]}>("00:00:00") && [_______] <= ("00:04:59"),("< 5 mins)

 

this worked!! 🙂 thank you for your help 

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.