calculate the text string length

J

Julia

How do I calculate the length of a string. I need this to
take the longest string value.

Thanks,

J
 
F

fredg

Julia said:
How do I calculate the length of a string. I need this to
take the longest string value.

Thanks,

J

Look up the Len() function in Access help.
intX = len(YourString)
 
Top