calculate the text string length

  • Thread starter Thread starter Julia
  • Start date Start date
J

Julia

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

Thanks,

J
 
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)
 
Back
Top