Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

place current date in field.

Dear QV users,

I would like to create a field that shows the current date after uploading. The dateformat is YYYYMMDD. Can someone tell me the function I should use.

with kind regards,

Aissam

1 Solution

Accepted Solutions
rubenmarin

Hi Aissam, if you want to show the reload date, there is a function to retrieve that, ie:

=Date(ReloadTime(), 'YYYYMMDD')

View solution in original post

4 Replies
MK_QSL
MVP
MVP

First Create a Variable

Let vToday = Date(Today(),'YYYYMMDD');

Now you have to use something like below

Load

     Field1,

     Field2,

     '$(vToday)' as TodayDate

From TableName;

rubenmarin

Hi Aissam, if you want to show the reload date, there is a function to retrieve that, ie:

=Date(ReloadTime(), 'YYYYMMDD')

Anonymous
Not applicable
Author

='Last Updated On' &' '&

ReloadTime()

for reload date time

awhitfield
Partner - Champion
Partner - Champion

Hi Aissam,

try =Date(ReloadTime(),'YYYY/MM/DD')

Regards

Andy