Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
I have two columns in a table fsales[Date of Sale] and fsales[Hold Date].
I would like to create a caluclated column that finds where the Hold Date is equal to exactly 14 days after the Date of Sale.
My calculation looks like this but I am not getting any correct data.
End of Trial = IF(fSales[Date of Sale]=(fSales[Hold Date]+14),1,BLANK())
Thanks for your help!
Solved! Go to Solution.
i believe this is the right way
End of Trial = IF(fSales[Date of Sale]+14=fSales[Hold Date],1,BLANK())
i believe this is the right way
End of Trial = IF(fSales[Date of Sale]+14=fSales[Hold Date],1,BLANK())