To check if a value is a text

Hi All

How to check if a field is text or number. based on which the item will turn to mark completion / exception.

In the decision box currently i am using to check if a field is empty like Data.productcode <>"". on the similar lines
do we have something.

i remember we have something in vb like isnumeric.

Thank you all
 
You could also regex to check - "([A-z]+)" for text (you would neet to add any special character to the list, if you want to check for them too), or "([0-9]+)" for number
 
Top