Forum Discussion
hide measure total
- 8 years ago
Hello,
you can use:
MeasureToDisplay=IF(HASONVALUE([ColumnOfTotal],[Measure],BLANK())
ColumnsOfTotal is the Column you want to show the single value but not the Total for.
Best regards.
Hello,
you can use:
MeasureToDisplay=IF(HASONVALUE([ColumnOfTotal],[Measure],BLANK())
ColumnsOfTotal is the Column you want to show the single value but not the Total for.
Best regards.
- marvicf8 years agoFrequent Visitor
Hi,
Thanks for your reply.
The column has more than one value. I just don't want it's total to show.
Thanks.
- Anonymous7 years agoNot applicable
By using HASONEVALUE function, the total is working properly but row level calculation is not working it shows blank but it shows value -
Code -
IF(
HASONEVALUE ('jci fact_VoucherGL'[VoucherDate])
,CALCULATE(
LEFT(
max('jci fact_VoucherGL'[VoucherDate])
,10)
,FILTER('jci fact_VoucherGL',[UR_NextYear]=0)
,FILTER('jci fact_VoucherGL',[UR_NextYear]=BLANK())
),BLANK())