Forum Discussion
IF
6 years agoPost Prodigy
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];"##,###;(##,###);-") Th...
Anonymous
6 years agoNot 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. "#,###,###; (#,###,###); -"
- IF6 years agoPost Prodigy
Hi,
Thanks it works, but the total gives wrong sum. How can I display correct sum?
Best regards,