Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
D3K
Advocate II
Advocate II

Rounding price to the nearest 0.09 cent

Hey everyone!

Hope to find a solution here.

I need to round a new counted price up to the nearest 0.09 cent.

For example:

23.47 -> 23.49

6.06 - > 6.09

15.32 -> 15.39

 but 

14.00 -> 13.99

 

Tried to use different variations of ROUND, CEILING, MROUND etc, but it doesn't work and I think I'm doing something wrong

Any help will be highly appreciated

Thanks a lot!

1 ACCEPTED SOLUTION
Greg_Deckler
Super User
Super User

@D3K How about this?

Column = 
    VAR __Trunc = TRUNC([Column1])
    VAR __Decimal = [Column1] - __Trunc
    VAR __TensDecimal = TRUNC(__Decimal*10)
    VAR __OnesDecimal = 9
RETURN
    IF(__Decimal = 0, __Trunc - .01,__Trunc + __TensDecimal/10 + __OnesDecimal/100)

@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

2 REPLIES 2
Greg_Deckler
Super User
Super User

@D3K How about this?

Column = 
    VAR __Trunc = TRUNC([Column1])
    VAR __Decimal = [Column1] - __Trunc
    VAR __TensDecimal = TRUNC(__Decimal*10)
    VAR __OnesDecimal = 9
RETURN
    IF(__Decimal = 0, __Trunc - .01,__Trunc + __TensDecimal/10 + __OnesDecimal/100)

@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

@Greg_Deckler Great! It works like a charm! Thank you

Helpful resources

Announcements
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.