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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Hello,
I'm having a weird problem when switching between number format for a Measure created by me.
The formula is DIVIDE(DISTINCTCOUNT(tablahechos[idGarantiaMacal]);DISTINCTCOUNT(tablahechos[idLoteoMacal]))
When I set is as a percentage it shows 130% which is correct. But when I try using decimal number with 2 decimal after comma it shows 1,00 which is not correct.
Any help?
Thanks in advance!
If you want to show 1.30 instead of 130%, keep Decimal number format.
If you want 130 → multiply by 100 in DAX:
Measure = DIVIDE(DISTINCTCOUNT(tablahechos[idGarantiaMacal]), DISTINCTCOUNT(tablahechos[idLoteoMacal])) * 100
Then format as Decimal number with 2 decimals.
Key point: Percentage formatting just multiplies the value by 100 for display; decimal formatting shows the raw fraction.
Srry for late answer,
I used the "Fixed" formula and I solved the issue. I haven't tryed the new format features in that model.
Cya
Hi,
It's possible to have a sample of youre data set with this measure ?
Regards.
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.