Hello,
how can we separate/remove linen item that start with serial#4 from list below -
Thank you
kauser
Filter Tool:
Left(ToString([Serial # ]),1) != "4"
^Assumed we are working with numerical data type. Thus, first convert to string, take the first character and confirm that it is not "4".
Happy Solving!