Forum Discussion

patyk's avatar
patyk
Frequent Visitor
8 years ago
Solved

SETTING UP PAGE FILTER

I would like to know if I can filter page using String (one of my columns) in exclude rows that end with 3 or end with S or end with B   thank you
  • Shantanu00007's avatar
    8 years ago
    There is a workaround to do it. Create a new column
    If( right(string,1)="3","exclude",If( right(string,1)="S","exclude",If( right(string,1)="B","exclude","include"))).

    This will give you include and exclude. Use this column in page level filter. Hope this solution works for you