Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I need for the value of this function to have single quotes around it:
Let vMinDtbus= min(date);
so it looks like this:
'2015-08-10'
how do I do this?
Try this:
Set vMinDtbus= Date(min(dt_bus));
chr(039) ?
Let vMinDtbus= chr(039)&min(dt_bus)&chr(039);