Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
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.