Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
8 years ago
Solved

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

  • mitsu's avatar
    mitsu
    8 years ago

    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

  • Anonymous's avatar
    Anonymous
    Not 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's avatar
      mitsu
      Icon for Resolver IV rankResolver 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

      • Anonymous's avatar
        Anonymous
        Not applicable

        Hello mitsu,

         

        that works perfectly now.

         

        Thank you for your fast help!