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!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi
I have to dispaly a card with value from a measure but the value comes with decimal which I dont want
Text = "Data Not available for " &[No Data]*100& "% of Entries"
The output Im getting is
Data Not available for 13.35457288383%
Is there a way to limit to the decimal or no decimal so that the result could be
Data Not available for 13% of Entries
Please help
Solved! Go to Solution.
Hi @mahra-in,
Since your measure return the text value, I think you can use format function to formatting decimal number part.
Please take a look at below link to know more about format measure:
Custom Numeric Formats for the FORMAT Function (DAX)
Sample:
Text format =
"xxxxx"
& FORMAT ( [No Data] * 100, "0.00" )
& "xxxx"
Regards,
Xiaoxin Sheng
The filed No Data is set with 0 in Decimal Places but when I use the field in between text ic omes with many decimal points
still the result is same
Hi @mahra-in,
Since your measure return the text value, I think you can use format function to formatting decimal number part.
Please take a look at below link to know more about format measure:
Custom Numeric Formats for the FORMAT Function (DAX)
Sample:
Text format =
"xxxxx"
& FORMAT ( [No Data] * 100, "0.00" )
& "xxxx"
Regards,
Xiaoxin Sheng
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 103 | |
| 80 | |
| 59 | |
| 51 | |
| 46 |