Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hi,
I had a number got from SQL, and I'd like to round down it. In Excel is pretty easy. I'll show an example:
A1=830 = ROUNDDOWN(A1/100;0) =8
A2=1020 = ROUNDDOWN(A2/100;0)=10
I need it in the new measure, or "M languege" because I'll use it in order to plot a graph.
Thanks,
Solved! Go to Solution.
Hi @Anonymous,
It's this one in M.
Number.RoundDown([Column1] / 100)
And this one in DAX.
Column = ROUNDDOWN([Column1]/ 100, 0)
Please refer to the snapshot below.
Best Regards,
Dale
I've tried it but didn't work.
Hi @Anonymous,
It's this one in M.
Number.RoundDown([Column1] / 100)
And this one in DAX.
Column = ROUNDDOWN([Column1]/ 100, 0)
Please refer to the snapshot below.
Best Regards,
Dale
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 53 | |
| 51 | |
| 36 | |
| 15 | |
| 14 |
| User | Count |
|---|---|
| 92 | |
| 75 | |
| 41 | |
| 26 | |
| 25 |