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

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

date without special characters

Hello All

i m extracting the date from the web link in CSV format so the date is like "2015-02-05"]

. now i need the date without special character like 2015-02-05

kindly help me i will be very thankful

Best Regards

RHS 

Date
"2015-02-05"]
2 Replies
Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

Try Date(Date#(PurgeChar(Date,'"]'),'YYYY-MM-DD'),'YYYY-MM-DD')


talk is cheap, supply exceeds demand
sunny_talwar

This also might work:

=Date(Date#('"2015-02-05"', '"YYYY-MM-DD"'))

in the script:

Date(Date#(DateField, '"YYYY-MM-DD"')) as DateField