Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request 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
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.