Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
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
User | Count |
---|---|
117 | |
73 | |
58 | |
49 | |
48 |
User | Count |
---|---|
171 | |
122 | |
60 | |
59 | |
56 |