Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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,'**');
try
WHERE PracticeName NOT like '**';
Where not index(PracticeName,'*');
or even this
Where SubStringCount(PracticeName, '*') = 0;
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;