View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Frank Kabel Frank Kabel is offline
external usenet poster
 
Posts: 3,885
Default Visual Basic Text Functions

Hi
variable=len(variable_2)
also use Mid without application.worksheetfunction

--
Regards
Frank Kabel
Frankfurt, Germany

"Moiz" schrieb im Newsbeitrag
...
I need to manipulate text variables using Visual Basic programming

what is thestatement for:

Len - length of variable
Mid

I tried:

variable = Application.WorksheetFunction.Len (Variable)
but it does not work.

Moiz