Forum Discussion
AllanBerces
1 year agoPost Prodigy
Visual calculation- If
Hi can anyone help me on my visual calculation if the date is greater than today value should be " - ",
Delta = [Actual] - [Plan]
Thank you
Hi,
Just add a if statement in your daxDelta =
IF( [Date] > TODAY(),
"-",
[Actual] - [Plan])Hope it helps!
2 Replies
- AlexTheGreatResolver II
Hi,
Just add a if statement in your daxDelta =
IF( [Date] > TODAY(),
"-",
[Actual] - [Plan])Hope it helps!
- AllanBercesPost Prodigy
Hi AlexTheGreat thank you very much. all good