Skip to main content
Announcements
SYSTEM MAINTENANCE: Thurs., Sept. 19, 1 AM ET, Platform will be unavailable for approx. 60 minutes.
cancel
Showing results for 
Search instead for 
Did you mean: 
CK_WAKE
Creator
Creator

SUBSTRING Function. Exclude which contains part of the string

Hi There, I want to apply filter to exclude those records which contains _RE from the Column1 while loading QVD.

Note: Length of strings are not consistent. 

Example I have two columns and  ID is the primary key for the table. So, I want to extract only those records which do not have _RE from column 1 while loading the data.

ID , Column1

1,  A1234_RE

2, A123678

3, A123787910_RE

4, B12384

Please advice.

1 Solution

Accepted Solutions
BrunPierre
Partner - Master
Partner - Master

Perhaps.

Where not WildMatch(Column1, '*_RE*');

View solution in original post

2 Replies
BrunPierre
Partner - Master
Partner - Master

Perhaps.

Where not WildMatch(Column1, '*_RE*');

CK_WAKE
Creator
Creator
Author

Thanks for the help, it worked.