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

Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now

Reply
NewbieJono
Post Partisan
Post Partisan

Ratio Calculation Rounding

Hello, is there any way to Round down the second part of this ratio Calc

 

Ratio =
VAR RATIO =
    DIVIDE (
        SUM ( 'FACT - Data'[final_unique_count] ),
        SUM ( 'FACT - Volumes'[Volume] )
    )
RETURN
    CONCATENATE ( "1", CONCATENATE ( " : ", Ratio ) )
 
Capture.PNG
2 ACCEPTED SOLUTIONS
PhilipTreacy
Super User
Super User

@NewbieJono 

 

Use ROUNDDOWN, for example to 2 decimal places

 

 

RETURN
    CONCATENATE ( "1", CONCATENATE ( " : ", ROUNDDOWN(Ratio, 2) ) )

 

 

https://learn.microsoft.com/en-us/dax/rounddown-function-dax

 

Regards

 

Phil



Did I answer your question? Then please mark my post as the solution.
If I helped you, click on the Thumbs Up to give Kudos.


Blog :: YouTube Channel :: Connect on Linkedin


Proud to be a Super User!


View solution in original post

Anonymous
Not applicable

Hi @NewbieJono 

 

Thanks for the reply from PhilipTreacy .

 

You can also try using ROUND. The following test is for your reference:

 

Sample:

vxuxinyimsft_0-1730093759297.png

 

Create a measure as follows

Radio = 
VAR _radio = SUM('FACT - Volumes'[Volume])
RETURN
CONCATENATE("1", CONCATENATE(":", ROUND(_radio, 10)))

 

In your scenario you can directly change the formula:

Ratio =
VAR RATIO =
    DIVIDE (
        SUM ( 'FACT - Data'[final_unique_count] ),
        SUM ( 'FACT - Volumes'[Volume] )
    )
RETURN
    CONCATENATE ( "1", CONCATENATE ( " : ", ROUND(RATIO, "Specify the number of digits to round off") ) )

 

Output:

vxuxinyimsft_1-1730093863886.png

 

For more details about the ROUND function, you can read related document link:

ROUND function (DAX) - DAX | Microsoft Learn

 

Best Regards,
Yulia Xu

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Hi @NewbieJono 

 

Thanks for the reply from PhilipTreacy .

 

You can also try using ROUND. The following test is for your reference:

 

Sample:

vxuxinyimsft_0-1730093759297.png

 

Create a measure as follows

Radio = 
VAR _radio = SUM('FACT - Volumes'[Volume])
RETURN
CONCATENATE("1", CONCATENATE(":", ROUND(_radio, 10)))

 

In your scenario you can directly change the formula:

Ratio =
VAR RATIO =
    DIVIDE (
        SUM ( 'FACT - Data'[final_unique_count] ),
        SUM ( 'FACT - Volumes'[Volume] )
    )
RETURN
    CONCATENATE ( "1", CONCATENATE ( " : ", ROUND(RATIO, "Specify the number of digits to round off") ) )

 

Output:

vxuxinyimsft_1-1730093863886.png

 

For more details about the ROUND function, you can read related document link:

ROUND function (DAX) - DAX | Microsoft Learn

 

Best Regards,
Yulia Xu

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

PhilipTreacy
Super User
Super User

@NewbieJono 

 

Use ROUNDDOWN, for example to 2 decimal places

 

 

RETURN
    CONCATENATE ( "1", CONCATENATE ( " : ", ROUNDDOWN(Ratio, 2) ) )

 

 

https://learn.microsoft.com/en-us/dax/rounddown-function-dax

 

Regards

 

Phil



Did I answer your question? Then please mark my post as the solution.
If I helped you, click on the Thumbs Up to give Kudos.


Blog :: YouTube Channel :: Connect on Linkedin


Proud to be a Super User!


Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

February Power BI Update Carousel

Power BI Monthly Update - February 2026

Check out the February 2026 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.