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

Announcements
ALERT: QlikView server communication interruptions following Microsoft Windows Domain Controller security updates
cancel
Showing results for 
Search instead for 
Did you mean: 
vinod2086
Creator II
Creator II

particular month and year data

Hi frnds,

in my req i have a table that table contains more data but i need to display only feb 2015 to nov 2015. in script how to write condition

Thanks in advance

Labels (1)
2 Replies
sunny_talwar

May be like this

Table:

LOAD     ....

FROM ....

Where DateField >= MakeDate(2015, 2) and DateField <= MakeDate(2015, 11);

avinashelite

add a where condition like

LOAD * from table

WHERE Month_Year>='Feb 2015' and Month_Year<='Nov 2015';

NOTE: All the date format should be in the same format