Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
marksmunich
Creator III
Creator III

using the date field with where condition

How can i use a date field with where condition with in the qlikview script,

i made some thing like.

Load

aq,

ads,

asda,

adsaasd,

Date

from asdf.qvd(qvd)

where aq= 'aaa' and Date=to_date('03.04.2014','DD.MM.YYYY');

But there is a syntax error for the date part.

1 Solution

Accepted Solutions
alexandros17
Partner - Champion III
Partner - Champion III

Where have you found the to_date function?

I would write

where aq= 'aaa' and Date=Date('03.04.2014','DD.MM.YYYY');

View solution in original post

2 Replies
alexandros17
Partner - Champion III
Partner - Champion III

Where have you found the to_date function?

I would write

where aq= 'aaa' and Date=Date('03.04.2014','DD.MM.YYYY');

marksmunich
Creator III
Creator III
Author

problem solved.