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...
Tahreem24
6 years agoSuper User
IF ,
Use the below DAX:
MEASURE = IF(SUM(Sheet6[Value])<0,"("& SUM(Sheet6[Value])&")", SUM(Sheet6[Value]))
IF
6 years agoPost Prodigy
Hi,
Thank you very much for the help. it helps. The last issue if you could help: when I put brackets, I don't want to see the minus sign. it should be for example; -3 or (3) However, the sum should be as you showed. For example; (3)+4 sum:1 Is there any possibility not to show the minus value?
Regards,
IF