Forum Discussion
Finance Report
- 6 years ago
Great, then we are halfway to the answer 🙂
It probably doesn't work because you are putting a column in the place of a Measure.
I think you should make a measure as Total Amount = SUM(Amount), and then use that measure in this Formating.Measure = FORMAT(Total Amount,"#,###0;(#,###0)")
or you can make this all in one measure with a variable :
Measure =
var Total Amount = SUM(Amount)
return FORMAT(Total Amount,"#,###0;(#,###0)")
Great, then we are halfway to the answer 🙂
It probably doesn't work because you are putting a column in the place of a Measure.
I think you should make a measure as Total Amount = SUM(Amount), and then use that measure in this Formating.
Measure = FORMAT(Total Amount,"#,###0;(#,###0)")
or you can make this all in one measure with a variable :
Measure =
var Total Amount = SUM(Amount)
return FORMAT(Total Amount,"#,###0;(#,###0)")
Many thanks for the time and greatly appreciate it