Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
wholelottared
Contributor III
Contributor III

How to see records without '#' shown in the title?

I can ignore 'update' with the following but the “#” doesn’t seem to be working the same way so I can show the first records not the updates

=if(not(upper(sr_eventtitle) like '*Update*' or not(HQ_EventTitle like '*#*')),sr_eventtitle)

picc.jpg

1 Solution

Accepted Solutions
RsQK
Creator II
Creator II

Try this:

pick(wildmatch(upper(sr_eventtitle),'*#*','*UPDATE*')+1,sr_eventtitle)

View solution in original post

2 Replies
RsQK
Creator II
Creator II

Try this:

pick(wildmatch(upper(sr_eventtitle),'*#*','*UPDATE*')+1,sr_eventtitle)

wholelottared
Contributor III
Contributor III
Author

This solved it! Thank you so much for your help!!! I need to start using the pick function more often.