Skip to main content
Announcements
SYSTEM MAINTENANCE: Thurs., Sept. 19, 1 AM ET, Platform will be unavailable for approx. 60 minutes.
cancel
Showing results for 
Search instead for 
Did you mean: 
stjernvd
Partner - Creator
Partner - Creator

how do i get single quotes around the value of a function?

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?

2 Replies
nagaiank
Specialist III
Specialist III

Try this:

Set vMinDtbus= Date(min(dt_bus));

pokassov
Specialist
Specialist

chr(039) ?

Let vMinDtbus= chr(039)&min(dt_bus)&chr(039);