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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric 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)

Follow on LinkedIn
@ 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)

Follow on LinkedIn
@ 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
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel

Power BI Monthly Update - May 2024

Check out the May 2024 Power BI update to learn about new features.