Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi QV Developer,
How to Load Inline date????
Please if anyone know then guide to me.
Thanks.
AAA:
LOAD * Inline
[
myDate
05/12/1998
];
BBB:
NoConcatenate
LOAD
year(myDate) as myYear
Resident AAA;
DROP Table AAA;
Attached an example
Thanks for reply.
But i dnt want to hardcod date in Inline table.
Is it possible to declare any variable and that will return todays date.
Thanks for reply.
But i dnt want to hardcod date in Inline table.
Is it possible to declare any variable and that will return todays date.
You can use Today() or Now() functions
try using
LOAD * Inline
[
myDate
today()
];