Forum Discussion
bcampbell
7 years agoHelper I
Difference between two Average Measure , but exclude if blank
I need to create a measure that I beleived to be simple , My measure currently is AVGVAL_DISP-CALL = [AVG DISP]-[AVG CALL] That does not work if where the AVG DISP measure has no timestamp ...
- Anonymous7 years ago
Hi,
Can you try this.
AVG CALL = CALCULATE(AVERAGE(frmain[Time]), FILTER(frmain,NOT ISBLANK(frmain[Time])))
Regards,
Pavan Vanguri.