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
- 1 year ago
Hi,
Just add a if statement in your daxDelta =
IF( [Date] > TODAY(),
"-",
[Actual] - [Plan])Hope it helps!
AlexTheGreat
1 year agoResolver II
Hi,
Just add a if statement in your dax
Delta =
IF( [Date] > TODAY(),
"-",
[Actual] - [Plan])
Hope it helps!
AllanBerces
1 year agoPost Prodigy
Hi AlexTheGreat thank you very much. all good