Forum Discussion
negative value in bracket
Hi,
I have a column that is called "project". its format is decimal number. I want to show negative values with brackets. I tried to make a measure (Measure=FORMAT([Project];"##,###;(##,###);-")
The PowerBI highlights under Project as if it doesn't recognize it. What should I do?
Best,
8 Replies
- AnonymousNot applicable
So you have to turn your column PROJECT into a measure. There are too many values, so you need to use MAX/MIN/SUM/etc. to tell the measure what specific value to turn into that format.
You will need two measures, for example:
Measure1 = MAX(Table[Project])
Measure2 = FORMAT( [Measure1], "###,###; (###,###); -")
(make sure to use more # if your numbers go into the millions i.e. "#,###,###; (#,###,###); -"
- IFPost Prodigy
Hi,
Thanks it works, but the total gives wrong sum. How can I display correct sum?
Best regards,
- Tahreem24Super User