Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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
Hi Aissam, if you want to show the reload date, there is a function to retrieve that, ie:
=Date(ReloadTime(), 'YYYYMMDD')
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;
Hi Aissam, if you want to show the reload date, there is a function to retrieve that, ie:
=Date(ReloadTime(), 'YYYYMMDD')
='Last Updated On' &' '&
ReloadTime()
for reload date time
Hi Aissam,
try =Date(ReloadTime(),'YYYY/MM/DD')
Regards
Andy