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