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.
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())