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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
Anonymous
Not applicable

Show negative number with Brackets and in red

Hi Experts

 

How do you show negative numbers in brackets and as red in power bi....

1 ACCEPTED SOLUTION
Stachu
Community Champion
Community Champion

@Anonymous
the conditional formatting is only for Table and Matrix visuals, but you can use it on the measures as well as columns
for the brackets you can use FORMAT
https://msdn.microsoft.com/query-bi/dax/custom-numeric-formats-for-the-format-function



Did I answer your question? Mark my post as a solution!
Thank you for the kudos 🙂

View solution in original post

4 REPLIES 4
javi0unavailabl
Resolver II
Resolver II

Depending your goal you can achieve this using different methods.

 

I suggest one:

Create new calculated column where DAX is:

NewColumn = IF(INT('Table'[value]) < 0 | "(" & 'Table'[value] & ")" | 'Table'[value])

Note that 'Table'[value] is type string. This is necessary for concatenating brackets.

 

Which visualization you will use to show this behavior? In Table visualization you can use Conditional Formatting under Format tab to achieve red color goal.

 

Let me know if this helps you.

 

Regards.

Stachu
Community Champion
Community Champion

you can change it with conditional formatting
https://docs.microsoft.com/en-us/power-bi/desktop-conditional-table-formatting



Did I answer your question? Mark my post as a solution!
Thank you for the kudos 🙂

Anonymous
Not applicable

Hi Stachu..

 

Thanks for the feedback, my fault should have mentioned that its a measure that i am trying to apply the rule too.. And i do not get the CF option on the measure..

Stachu
Community Champion
Community Champion

@Anonymous
the conditional formatting is only for Table and Matrix visuals, but you can use it on the measures as well as columns
for the brackets you can use FORMAT
https://msdn.microsoft.com/query-bi/dax/custom-numeric-formats-for-the-format-function



Did I answer your question? Mark my post as a solution!
Thank you for the kudos 🙂

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.