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

Announcements
ALERT: QlikView server communication interruptions following Microsoft Windows Domain Controller security updates
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

Labels (1)
1 Solution

Accepted Solutions
robert_mika

=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

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

Anonymous
Not applicable

String functions:

Right(yourText, 7)

Replace(yourText, 'TotalC', '' )