Forum Discussion
ak77
1 year agoPost Patron
Summary Table Custom Total
I have a summary table as below and % Complete Column total to be displayed as the total of another Sum of % Complete column. in short.. can we have another new measure/column New % Complete as be...
- 1 year ago
Hi,
If both [% Complete] and [Sum of % Complete] are MEASURES (not columns), and then please try something like below whether it works.
New % Complete = IF ( HASONEVALUE ( 'TableName'[Title] ), FORMAT ( [% Complete], "#,#0.00%" ), FORMAT ( [Sum of % Complete], "#,#0.00" ) )
Jihwan_Kim
1 year agoSuper User
Hi,
If both [% Complete] and [Sum of % Complete] are MEASURES (not columns), and then please try something like below whether it works.
New % Complete =
IF (
HASONEVALUE ( 'TableName'[Title] ),
FORMAT ( [% Complete], "#,#0.00%" ),
FORMAT ( [Sum of % Complete], "#,#0.00" )
)
ak77
1 year agoPost Patron