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

To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.

Reply
ChrisY
New Member

How to ROUND like this?

true    round

901     900

2876   3000

2120   2000

2531   3000

8339   8000

3023   3000

14099 10000

 

I try ROUND,ROUNDUP,ROUNDDOWN,but it can't work for each number

1 ACCEPTED SOLUTION
2 REPLIES 2
Zubair_Muhammad
Community Champion
Community Champion

@ChrisY

 

You can use this as calculated column

 

=
VAR Digits =
    LEN ( [true] ) - 1
VAR second_digit =
    VALUE ( MID ( [true], 2, 1 ) ) >= 5
RETURN
    SWITCH (
        TRUE (),
        second_digit, ROUNDUP ( [true], - Digits ),
        ROUNDDOWN ( [true], - Digits )
    )

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors