Cordeiro82
MIS
Hello all...
I have a table with a column called Item Number and I need to find all item numbers that have a length of 14 characters with NO alphabets. Is there any way I can do this without having to resort to VB?
Thanks,
Kevin
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Where Len([Item Number]) = 14 AND IsNumeric([Item Number])