Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
nagarjuna_kotha
Partner - Specialist II
Partner - Specialist II

Filter issue>>>>>Urgent

Hi all,

I have field on year.in that i have 2011,2012,2013,2014,2015.

I want only 2014 and 2015.how to do in script level.

Give me solution on ASAP

Regards,

Nagarjuna

1 Solution

Accepted Solutions
amit_saini
Master III
Master III

Hi,

Try this:

LOAD year

FROM

D:\Vrushali\QVDs\tab.qvd

(qvd)

Where match(Year,'2014','2015') ;


Thanks,

AS

View solution in original post

7 Replies
Anonymous
Not applicable

Hi,

You can add a where clause in your load script.

Load * from table

where match(year,2014,2015)

Regards,

Greeshma

Not applicable

Hi Nagarjuna,

You can achieve it by this way also,

LOAD year

FROM

D:\Vrushali\QVDs\tab.qvd

(qvd)where year>2013;

Regards,

Vrushali.

Not applicable

if(match(year,2014,2015),year);

Not applicable

if(match(year,2014,2015),year);

amit_saini
Master III
Master III

Hi,

Try this:

LOAD year

FROM

D:\Vrushali\QVDs\tab.qvd

(qvd)

Where match(Year,'2014','2015') ;


Thanks,

AS

nagarjuna_kotha
Partner - Specialist II
Partner - Specialist II
Author

Thank you for ur quick reply.

Regards,

Nagarjuna

amit_saini
Master III
Master III

Cheers