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!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.
Hi all,
Have searched around but cant seem to comprehend exactly what i need to put. i would like to create a custom column whereby if an individuals 'Assign Date' is more than 3 months ago, it will appear with a Y in the column
Solved! Go to Solution.
NewStep=Table.AddColumn(PreviousStepName,"Custom",each if Date.From([Assign Date])<Date.AddMonths(Date.From(DateTime.LocalNow()),-3) then "Y" else null)
NewStep=Table.AddColumn(PreviousStepName,"Custom",each if Date.From([Assign Date])<Date.AddMonths(Date.From(DateTime.LocalNow()),-3) then "Y" else null)
DAX version, in case you want to create the calculated column:
Over3Months = datediff(today(), [Assigned Date], MONTH) <= -3