Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Is there a way to assign a value to a variable from Field data?... i mean, i have a table with some values, and i need to obtain a value from this table and assing it to a variable in the script. Can i do that?
Regards!
Try something like this,
MinDt:
LOAD Min(Date) as MinDate
Resident tab1;
LET vMinDate = Peek('MinDate');
Try something like this,
MinDt:
LOAD Min(Date) as MinDate
Resident tab1;
LET vMinDate = Peek('MinDate');
Love it!!... Thanks!