The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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!