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: 
rish_sai
Contributor III
Contributor III

Get Date Field for text

Hi All,

I have date field like this TotalCJan2015,TotalCFeb2015,TotalCMar2015,.....;

how can I get jan2015,Feb2015,Mar2015...;

Thanks Advanced

1 Solution

Accepted Solutions
robert_mika
Master III
Master III

=Replace( yourfield,'TotalC','')

View solution in original post

4 Replies
Frank_Hartmann
Master II
Master II

try like this in script:

right(Field,7) as Field

hope this helps

Nicole-Smith

date#(right([Your_Field_Name],7),'MMMYYYY')

robert_mika
Master III
Master III

=Replace( yourfield,'TotalC','')

Anonymous
Not applicable

String functions:

Right(yourText, 7)

Replace(yourText, 'TotalC', '' )