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: 
amit_saini
Master III
Master III

Filter Email Help

Hi Folks ,

I'm having data as per email ID's below:

aaron.simpson@abc.xyz.com

aaron.williams@abc.xyz.com

aaron.zhang@abc.xyz.com

abalazsova@bh.com

abdelmajid.afarsiou@pqr.com

I just want to filter my data based on my email Ids, want to see data only if email id is @abc.xyz.com

Please help!

Thanks,

AS

4 Replies
renjithpl
Specialist
Specialist

May be this...

LOAD

  Field
FROM
...

Where match(SubField(Field, '@', 2), 'abc.xyz.com')>0;


sagarkharpude
Creator III
Creator III

use wildmatch in script

if(wildmatch(email,'*@abc.xyz.com*')=1,1,0) as flag

and use this flag in front end

or you can also exclude the records while loading as below

load *

from Tablename where wildmatch(email,'*@abc.xyz.com*')=1;

Not applicable

hi,

use in where clause

wildmatch(mailid,'aaron.simpson@abc.xyz.com','aaron.williams@abc.xvz.com')=1;

Regards

Vimlesh

Not applicable

Hi,

Please try this:

load

..

from

where wildmatch(upper('abc@xyz.com'),'*@XYZ.COM')=1

Thanks!