IFPost Prodigy6 years agoSolvednegative 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...Show MoreTahreem24 to IF6 years agoIF , What is [Project] exactly? Is it Measure or just a fields or Calculated column? If it is field from table so try to use aggreagation like SUM,MAX etc. Tahreem24 to Tahreem246 years agoIF , Use the below DAX: MEASURE = IF(SUM(Sheet6[Value])<0,"("& SUM(Sheet6[Value])&")", SUM(Sheet6[Value]))
Tahreem24 to IF6 years agoIF , What is [Project] exactly? Is it Measure or just a fields or Calculated column? If it is field from table so try to use aggreagation like SUM,MAX etc. Tahreem24 to Tahreem246 years agoIF , Use the below DAX: MEASURE = IF(SUM(Sheet6[Value])<0,"("& SUM(Sheet6[Value])&")", SUM(Sheet6[Value]))
Tahreem24 to IF6 years agoIF , What is [Project] exactly? Is it Measure or just a fields or Calculated column? If it is field from table so try to use aggreagation like SUM,MAX etc.
Tahreem24 to Tahreem246 years agoIF , Use the below DAX: MEASURE = IF(SUM(Sheet6[Value])<0,"("& SUM(Sheet6[Value])&")", SUM(Sheet6[Value]))
Tahreem24Super User to Tahreem246 years agoOr you can also try using Dax: = IF([Project]<0,&"("& [Project]&")", [Project]) IFPost Prodigy to Tahreem246 years agoHi,When I type [Project], the power bi doesn't recognize it. it underlines it with red unfortunatelly.Tahreem24Super User to IF6 years agoIF , What is [Project] exactly? Is it Measure or just a fields or Calculated column? If it is field from table so try to use aggreagation like SUM,MAX etc. Show More
Tahreem24Super User to Tahreem246 years agoOr you can also try using Dax: = IF([Project]<0,&"("& [Project]&")", [Project])
IFPost Prodigy to Tahreem246 years agoHi,When I type [Project], the power bi doesn't recognize it. it underlines it with red unfortunatelly.
Tahreem24Super User to IF6 years agoIF , What is [Project] exactly? Is it Measure or just a fields or Calculated column? If it is field from table so try to use aggreagation like SUM,MAX etc.
Related contentNegative numbers in the bracketsIF Negative valuenegative value in bracketFormat Negative Percent to Brackets/ParenthesesBrackets in tablenames