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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
ianlapid
Contributor
Contributor

QVD WHERE clause?

I cant seem to get this to work?

LET v_Load_Before_date = Date#('2018-07-02');

temp_shift_duration:

LOAD

    batch_id,

    shift_date

FROM [$(vLibPath)$(vQVD_Name).qvd](qvd)

WHERE shift_date < $(v_Load_Before_date);

I suspect this: shift_date < $(v_Load_Before_date), doesn't really work?

Thank you in advance!

1 Reply
francescoreggia
Partner - Contributor III
Partner - Contributor III

Try

Date#(shift_date)< $(v_Load_Before_date)