Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
1 year ago
Solved

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

  • 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.