The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
Hi All,
I am having a scenario which requires to replace the values in the report based on the following condition.
If the value falls below 10 then replace it with an asterisk (*).
Can anyone please help me to solve this problem. I can share more details if required.
Thanks
The big issue you are going to have with this is that you are mixing text and numeric. Are you OK with everything being text?
If so, you could do something like:
Measure 9 = IF(SUM([Column1])<10,"*",CONCATENATE(SUM([Column1]),""))
User | Count |
---|---|
69 | |
68 | |
65 | |
55 | |
28 |
User | Count |
---|---|
112 | |
82 | |
66 | |
48 | |
43 |