Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hey All,
I am trying to determine if the 5th character in a string is a number. Some field values are TEST##### and some are TESTxxxx if TEST# then I want to show, if TESTx I want to hide.
Thanks,
Vince
IsNum(mid('TESTxxxx',5,1))
IsNum(mid('TESTxxxx',5,1))
Try with something like
IsNum(mid('abcd1fg',5,1))
Thank you - I figured it was that simple!!!!!
Couldn't get my brain around it!!!!!!
Thank you - this works as well