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.
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())