Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
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);