Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowData Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more
Hello, is there any way to Round down the second part of this ratio Calc
Solved! Go to Solution.
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
Proud to be a Super User!
Hi @NewbieJono
Thanks for the reply from PhilipTreacy .
You can also try using ROUND. The following test is for your reference:
Sample:
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:
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.
Hi @NewbieJono
Thanks for the reply from PhilipTreacy .
You can also try using ROUND. The following test is for your reference:
Sample:
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:
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.
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
Proud to be a Super User!
Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.
Check out the May 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 23 | |
| 23 | |
| 21 | |
| 17 | |
| 14 |
| User | Count |
|---|---|
| 58 | |
| 50 | |
| 37 | |
| 29 | |
| 24 |