Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
carlol
Helper IV
Helper IV

redact Aggregated Column value

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 

1 ACCEPTED SOLUTION
v-easonf-msft
Community Support
Community Support

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

View solution in original post

3 REPLIES 3
carlol
Helper IV
Helper IV

Thanks 

 

I was going to look at conditional formatting too , this is how you can implement in Excel 

 

Capture.PNG

 

 

 

 

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

v-easonf-msft
Community Support
Community Support

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

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.