Forum Discussion

chydewf1's avatar
chydewf1
Frequent Visitor
8 years ago
Solved

Filtering row based on format

Hi,   I have a list of part numbers where i want to filter anything out that is not in a particular format.   The format I want to keep is:   XX-#####-X-###   Where x = any letter of the alph...
  • chydewf1's avatar
    chydewf1
    8 years ago

    Hi v-huizhn-msft

     

    I think I have solved it - The following seems to work well

     

    = if(mid(Table[Column],11,1)="-"&& mid(Table[Column],9,1)="-"&& mid(Table[Column],3,1)="-",TRUE,FALSE)

     

    Thanks for your help

     

    Chris