The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hi can anyone help me on my visual calculation if the date is greater than today value should be " - ",
Solved! Go to Solution.
Hi,
Just add a if statement in your dax
Delta =
IF( [Date] > TODAY(),
"-",
[Actual] - [Plan])
Hope it helps!
Hi,
Just add a if statement in your dax
Delta =
IF( [Date] > TODAY(),
"-",
[Actual] - [Plan])
Hope it helps!