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

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
smilingjohn
Specialist
Specialist

Year in edit script

Hi All


I have a data which start from 2014 .
in my qlikview script i wanted to consider the data from 2016 and above .
how will i achieve this in the edit script ?
can please someone help on this .I am attaching my application 

Thanks in advance

1 Solution

Accepted Solutions
agigliotti
Partner - Champion
Partner - Champion

what about adding: where Year >= 2016 in your load statement?

View solution in original post

2 Replies
agigliotti
Partner - Champion
Partner - Champion

what about adding: where Year >= 2016 in your load statement?

ljackson
Creator
Creator

 

As the above reply says ....amend your script to this:

Test_Year:

LOAD Year,
Earnings,
Severity
FROM
Test_year.xlsx
(ooxml, embedded labels, table is Sheet2)

where "Year" >= '2016';