Forum Discussion
Heinrich
2 years agoPost Partisan
Filters: Exclude Numbers
Hello Is it possible to exclude numbers or only contain letters in a filter. Regards Heinrich
- 2 years ago
Hi Heinrich so, either take my first solution, there are 10 possible numbers that any number can start with and in advanced filtering say starts with instead of equals or contains.
Or create a Calculated Column
VizFilter =
if(left(Table[YourColumn], 1)
in {"1","2","3","4", "5", "6", "7", "8", "9", "0"}, 1, 0)
Use it as a filter.
olgad
2 years agoResident Rockstar
A dirty solution, but nonetheless:
In the filter, you choose filter type: basic, deselct everything, pick 10 entries
Then, change the filter type to Advanced:
Change "is" to "does not contain" and put in 0,1,2,3,4,5 etc. and apply filter
Heinrich
2 years agoPost Partisan
Hello olgad
Thank you but there are multiple digits so one single number is to few.
Do you have the possibility to expand this solution?
Regards
Heinrich