March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hello community!
How can i limit the number of digits of a percentage into 3 digits only? i want my limits to be 999% to -999%, otherwise, "N/A"
i.e how can i have "N/A" instead of 4010%
i.e
Solved! Go to Solution.
Hi H_SL,
Yes, you can control it by using DAX Expression.
For Example, if your percentage is a measure that it returns values.
You can create one more measure and write DAX Expression like,
=IF(AND([Percentage]>-999, [Percentage]< 999), [Percentage], 'N/A')
Hope this helps you a lot.
Regards,
Pradeep
Hi H_SL,
Yes, you can control it by using DAX Expression.
For Example, if your percentage is a measure that it returns values.
You can create one more measure and write DAX Expression like,
=IF(AND([Percentage]>-999, [Percentage]< 999), [Percentage], 'N/A')
Hope this helps you a lot.
Regards,
Pradeep
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
123 | |
85 | |
85 | |
70 | |
51 |
User | Count |
---|---|
205 | |
157 | |
97 | |
79 | |
69 |