Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredJoin 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.
I want to create a custom column in a load query that reflects the date the data was loaded, but when attempting to use Today() or Now() an error is returned. How should this be done?
In the query, create a new column and use
DateTime.LocalNow()
From:
In DAX, use:
=TODAY()
Of course, that would be a bad idea to use TODAY() in DAX for what you want, as I am sure you have already realized.
How to create a column containing today's date depends on the source of the query. If the query is from SQL Server the query would be something like Select column1, getdate() as Loaddate from tableY