Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
ravindraa
Creator
Creator

filter the data

Hi Exprerts,

I have one urgent requirement please help me on this. I have two fields one WAVE  and DISTRICT fields

waveDistrict
wave1prakasam
wave1guntur
wave1Eastgodavari
wave1westgodavari
wave2prakasam
wave2guntur
wave2Eastgodavari

Expected result :

waveDistrict
wave1prakasam
wave1guntur
wave1westgodavari
wave2prakasam
wave2guntur
wave2Eastgodavari

here i have to filter the Eastgodavari district data from Wave1 which is also available in wave 2. That means we don't want wave1 data from Eastgodavari district

please give me any suggesion.

thanks for advance.................................

1 Solution

Accepted Solutions
Anil_Babu_Samineni

Why Can't you simply do this? I seriously omit to do this. Could be some reasons I've doing hard code

LOAD wave,

     District

FROM

[https://community.qlik.com/message/1283467]

(html, codepage is 1252, embedded labels, table is @1) Where Not WildMatch(wave, 'wave1') or  Not WildMatch(District, 'Eastgodavari');

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful

View solution in original post

7 Replies
Anil_Babu_Samineni

Expected result?

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
ravindraa
Creator
Creator
Author

Hi Anil Babu,

thanks for reply  below are the expected reslult.

waveDistrict
wave1prakasam
wave1guntur
wave1westgodavari
wave2prakasam
wave2guntur
wave2Eastgodavari
prma7799
Master III
Master III

In back end

where wave  <> 'wave1' and District <>'Eastgodavari'

Anil_Babu_Samineni

Why Can't you simply do this? I seriously omit to do this. Could be some reasons I've doing hard code

LOAD wave,

     District

FROM

[https://community.qlik.com/message/1283467]

(html, codepage is 1252, embedded labels, table is @1) Where Not WildMatch(wave, 'wave1') or  Not WildMatch(District, 'Eastgodavari');

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
Anil_Babu_Samineni

And won't work, Should be in OR operator

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
prma7799
Master III
Master III

PFA..

ravindraa
Creator
Creator
Author

Thanks for giving support Anil Babu........it is working for me thank you very much

.