Forum Discussion
roundup and rounddown
Hello together,
I´ve got a table with turnaround times (e.g. 0,001 days, 3,247 days...). Is it possible with a measure to say that everything under 1 day should be round up to 1 and the rest should be round up when it is over ... ,500 and round down when it is under ... ,500 ?
Thanks in advance!
Greetings
Following should work .
if([Total TAT - Creation to Shipping]<1,ROUNDUP([Total TAT - Creation to Shipping],0),ROUND([Total TAT - Creation to Shipping],0))
Please do try the same .
Thanks,
Mitsu
3 Replies
- AnonymousNot applicable
I thought that I can do it like that:
= IF('CCCE WSPs'[Total TAT - Creation to Shipping] <1;1;IF('CCCE WSPs'[Total TAT - Creation to Shipping]>,500;ROUNDUP('CCCE WSPs'[Total TAT - Creation to Shipping];0);ROUNDDOWN('CCCE WSPs'[Total TAT - Creation to Shipping];0)))
So everything under 1 day is now excactly 1 day, but the problem is that Power BI rounds everything up now instead of runding down the values under ... ,50
- mitsu
Resolver IV
Following should work .
if([Total TAT - Creation to Shipping]<1,ROUNDUP([Total TAT - Creation to Shipping],0),ROUND([Total TAT - Creation to Shipping],0))
Please do try the same .
Thanks,
Mitsu
- AnonymousNot applicable