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: 
user467341
Creator II
Creator II

Reversing filter by searching last few digits?

Hi all,

In normal Qlik Sense filter, if I type 123, it will filter the list to 12345, 12363, 12367, 12388.

If I type *63, it will filter 12363 (wild card infront).

My question is if it is possible not to use a wild card at the front to do this? Basically I want to search the last few digits of the data, then it will filter for me like how a wild card will do.

Thank you.

Labels (2)
2 Replies
Chanty4u
MVP
MVP

May be this 

NewField:

LOAD *,

     Right(DataField, 2) AS LastTwoDigits

FROM data;

 

In filter you can give this 

= WildMatch(LastTwoDigits, '*63')

 

user467341
Creator II
Creator II
Author

Hi Chanty4u,

I am using a straight table. Am i supposed to put the wildmatch inside the dimension?