Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
I am loading data which has null values for the CRITICALITY field.
Null values are being skipped in the 'Not Match' function.
How do I include the null values and only skip 'C' and 'E' ? - see below.
Thanks,
Peter
Where
Not Match (CRITICALITY, 'C ', 'E')
Solved it by using 'Not Like' instead of Not Maatch
where
//Not Match (CRITICALITY, 'C ', 'E')
(Not CRITICALITY like 'C' and Not CRITICALITY like 'E')