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 there,
Can someone advise how I can rectify this statement please? If the agreement end date is in this year, then I want the custom column to display 'Active', otherwise 'Inactive'.
Solved! Go to Solution.
(pay attention to case sensitivity)
= if Date.IsInCurrentYear([Agreement End Date]) then "Active" else "Inactive
--Nate
(pay attention to case sensitivity)
= if Date.IsInCurrentYear([Agreement End Date]) then "Active" else "Inactive
--Nate
Thank you very much @Anonymous