Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
I have a field with 0043-APT-XYZ-DW.
The first 4 elements shows the project name.
How to check whether the first 4 elements are number?
Regards,
Keerthi KS
IsNum(Left(YourField,4))
or,
IsNum(SubField(YourField,'-',1))
try like this using subfield function :
IsNum(SubField(FieldName,'-',1))
if( isnum(subfield(Field,'-',1)), expression1, expression)