The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Hi
Is it possible to redact QTY column , if Value is 5 or less it illustrated <5
But when aggregated it will still correclty sum the total , 2+ 10 = 12 . illustrated in powerbi visual is <5 & 10
Solved! Go to Solution.
Hi, @carlol
It's difficult to redact QTY column.
You may need to add new fields like this:
calculated column:
New Qty = IF('Table'[Qty]<5,"<5",FORMAT('Table'[Qty],"general number"))
measure:
Result =
var tab=VALUES('Table'[New Qty])
return CONCATENATEX(tab,'Table'[New Qty],"&")
Best Regards,
Community Support Team _ Eason
Thanks
I was going to look at conditional formatting too , this is how you can implement in Excel
Hi, @carlol
Conditional formatting is basically infeasible.
Although PowerBI can also set conditional formatting, but it only applies to the background color, field color, icon, URL of cells in the table.
PowerBI does not support conditional formatting for the display of data format.
Best Regards,
Community Support Team _ Eason
Hi, @carlol
It's difficult to redact QTY column.
You may need to add new fields like this:
calculated column:
New Qty = IF('Table'[Qty]<5,"<5",FORMAT('Table'[Qty],"general number"))
measure:
Result =
var tab=VALUES('Table'[New Qty])
return CONCATENATEX(tab,'Table'[New Qty],"&")
Best Regards,
Community Support Team _ Eason
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
User | Count |
---|---|
113 | |
81 | |
75 | |
52 | |
48 |
User | Count |
---|---|
134 | |
124 | |
78 | |
64 | |
63 |