Forum Discussion
Filter extraction in Query editor
- 5 years ago
Hi Anonymous
Try filtering for "202 " , that is a total of 4 characters 202 and a space.
Or filter to keep 202 and then filter again to remove 20-
Regards
Phil
Hi Anonymous ,
A possible code-free solution.
In the example below you need to keep the rows having the substring at the beginning, in the middle or at the end.
Duplicate the column, split it into rows by each occurrence of the space delimiter and keep only those that are exact matches of your substring.
Payeras_BI loved your solution and it is more robust. However I guess in terms of ease, PhilipTreacy's solution was better. I wonder how I coudn't figure this out on my own, although handing such cases using a space doesnt make sense. I was expecting regex type of solution but a problem solved is a problem solved.