Forum Discussion
Snagalapur
1 year agoHelper IV
Custom format values in measure / cards
Hi All,
Please suggest how to custom format values in measure.
below code is not as expected -
Act v. Bud = FORMAT(
SUM([actual_op])- SUM( [budget])/1000000, "#,##0.0,,M;(#,##0.0,,M)")
expected format-
Thank you.
Hi Snagalapur -
Act v. Bud = FORMAT(
(SUM([actual_op]) - SUM([budget])) / 1000000,
"#,##0.0,,M;(#,##0.0,,M)"
)you can replace the fields values as per your model. Hope this works.
2 Replies
- rajendraongole1Super User
Hi Snagalapur -
Act v. Bud = FORMAT(
(SUM([actual_op]) - SUM([budget])) / 1000000,
"#,##0.0,,M;(#,##0.0,,M)"
)you can replace the fields values as per your model. Hope this works. - danextianSuper User