Forum Discussion
Anonymous
6 years agoNot applicable
Matrix: Variance blank fields
Hi Everyone, I created the below matrix but I need help to create an optimal variance between Plan and Actual. Right now I made the following DAX formula to measure Var: Var = IF([Actual] = ...
- 6 years ago
Hi Anonymous ,
Modify your measure as below:
If(MAX[date]>=TODAY(),BLANK(),if(isblank([Plan]);0;CALCULATE([Actual] - [Plan])))Best Regards,
KellyDid I answer your question? Mark my post as a solution!
amitchandak
6 years agoSuper User
Anonymous , You can try.
Var = IF(isblank([Actual]) ;blank();if(isblank([Plan]);0;CALCULATE([Actual] - [Plan])))