Skip to main content
Announcements
Live today at 11 AM ET. Get your questions about Qlik Connect answered, or just listen in. SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
praveenkumar_ma
Partner - Creator
Partner - Creator

Where Date Condition for loading?????

Hello Experts,

I have a where date condition like date should load evry8th of every month and monthened of every month

like:

Where DATE = every monthend  and 8th of every month ????

How to write where condition for date in dataloadeditor ????

Thanks in Advance

Regards

PM

2 Replies
arvind_patil
Partner - Specialist III
Partner - Specialist III

For Monthend you can try below.

Datatable:

.

DateField

..

From

...

FinalData:

..

..

Resident Datatable;

Right Join (FinalData)

LOAD Date(Floor(MonthEnd(DateField))) as MonthendDate


Resident Datatable;


Thanks,

Arvind Patil

arvind_patil
Partner - Specialist III
Partner - Specialist III

For Monthend you can try below.

Datatable:

.

DateField

..

From

...

FinalData:

..

..

Resident Datatable;

Right Join (FinalData)

LOAD Date(Floor(MonthEnd(DateField))) as MonthendDate


Resident Datatable;


Concatenate(FinalData)

FinalData1:

..

..

Resident Datatable;

Right Join (FinalData)

LOAD Date(Floor(MonthStart(DateField))+7) as EightDate

Resident Datatable;


Drop table Datatable;


Thanks,

Arvind Patil