Skip to main content
Announcements
NEW: Seamless Public Data Sharing with Qlik's New Anonymous Access Capability: TELL ME MORE!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Load between dates

Hi Guys

This is probably and easy question, but I just cant figure it out ,

I'm loading Excel Spreadsheets into QV, but I wish to only load dates less than today and greater than 6th March 2010.

I have tried :





FROM

(biff, embedded labels, header is 1 lines, table is Drawdown$)

WHERE

Date<Date(Today()) and Date>Date(06/03/2010)





But this is just bringing in all data before Today ( without the 6/3/10 restriction).

I have the dates formated as :

Date(Date) as Date

Month(Date(Date)) as Month

Week



(Date(Date)) as Week

Year(Date(Date)) as Year



Can anyone please help ? Thanks



2 Replies
Not applicable
Author

Hi ,

You have to use

Load

...........

...........

From

......................................

Where

where Date>'06/03/2010' and Date<today();

Hope this will help you.

Thanks&Regards,

Yogesh

Not applicable
Author

Thanks Yogesh ,

Thats perfect