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

how to remove value not required

Hello There,

I create some report that some data start at 333 and 777 is unwanted or not required my concern is how can i remove at IDNo field start at 333 and 777 in my load script, list below is my sample data from db.

IDNo
777abcdefg00000654349
853abcdefg00000614349
072abcdefg10000647350
802abcdefg10000064951
333abcdefg10000064356
333abcdefg10000064382
777abcdefg10000064358

 

Best Regards,

Bing

Labels (1)
1 Solution

Accepted Solutions
Anil_Babu_Samineni

Perhaps this?

Load IDNo from table where not wildmatch(IDNo, '333*', '777*')

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful

View solution in original post

2 Replies
Anil_Babu_Samineni

Perhaps this?

Load IDNo from table where not wildmatch(IDNo, '333*', '777*')

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
bsbernabe
Creator
Creator
Author

Thank you for fast support highly appreciated.