Skip to main content
Announcements
NEW: Seamless Public Data Sharing with Qlik's New Anonymous Access Capability: TELL ME MORE!
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);