Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
Hi Experts
How do you show negative numbers in brackets and as red in power bi....
Solved! Go to Solution.
@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
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.
you can change it with conditional formatting
https://docs.microsoft.com/en-us/power-bi/desktop-conditional-table-formatting
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..
@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