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