Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
akuttler
Creator
Creator

FILTERING WILD CARD IN DATA LOAD

Hi,

I am attempting to filter out fields that contain an '*' in my dataload, but its filtering out everything.

LOAD

     "DATE" as Date,

      Year ("DATE") as Year,

    MEMO,

    CREDIT,

    PracticeName

FROM [lib://NNS ANALYTICS/MASTER Daily Bank Statements BACKUP.xlsx]

(ooxml, embedded labels, table is [2018])

WHERE NOT WildMatch(PracticeName,'**');

4 Replies
Chanty4u
MVP
MVP

try

WHERE PracticeName NOT like '**';


Digvijay_Singh

Where not index(PracticeName,'*');

sunny_talwar

or even this

Where SubStringCount(PracticeName, '*') = 0;

sasiparupudi1
Master III
Master III

another way

LOAD

     "DATE" as Date,

      Year ("DATE") as Year,

    MEMO,

    CREDIT,

    PracticeName

FROM [lib://NNS ANALYTICS/MASTER Daily Bank Statements BACKUP.xlsx]

(ooxml, embedded labels, table is [2018])

WHERE Len(Keepchar(PracticeName,'**'))=0;