Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
jduenyas
Specialist
Specialist

Date to string

Hi all

Is there a function to convert date to string or numeral value to string?

VB has the function Cstr(<value>) which will return the value as string.

The QV function MonthName(today()) returns Mar 2013 but that is only the presentation of the numerical value behind.

I am trying to get a string 'Mar 2013' out of it.

Thanks

1 Solution

Accepted Solutions
MayilVahanan

HI

Try like this

text(MonthName(Today()))

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.

View solution in original post

2 Replies
MayilVahanan

HI

Try like this

text(MonthName(Today()))

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.
jduenyas
Specialist
Specialist
Author

Thanks

That did the trick