Forum Discussion
Anonymous
1 year agoNot applicable
Add GETDATE in Power Query
Hi,
I want to show in my Query the timeframe when everytime refreshed is done.
I'm using the table called gbkmut with several fields.
How can I do this?
Thanks...tksnota...
SELECT GETDATE() as timestamp
Note this will be very wasteful if you add that column to your query. Better to use it as a separate query.
1 Reply
- lbendlin
Super User
SELECT GETDATE() as timestamp
Note this will be very wasteful if you add that column to your query. Better to use it as a separate query.