HOW TO COUNT characters in field

D

DK

I need to extract number of caracters in field.

Something as if number of characters in field "Field 1" = 13 then do this
else do this.

Thank You for Your help


DK
 
N

Nikos Yannacopoulos

Use built-in function Len(), like

If Len([ControlName]) = 13 Then ...

HTH,
Nikos
 
Top