Forum Discussion
Malsha
Helper I
3 years agoMeasures Issue
Hi everyone, I have created these 3 measures for my power bi report and those 3 measures display as columns in the report.. 1. column Total Worked: Total Worked = CALCULATE( SUM('...
BITomS
Solution Supplier
3 years agoHi Malsha
For your 3rd measure, I think you can use an IF expression with ISBLANK:
Measure = IF(ISBLANK([Total Worked]),"N/A",[Total Worked] - [worked hours for selected period])
Hope this helps.
- Malsha3 years ago
Helper I
Hi, This works but it gives duplicated records.