austin350s10
Active Member
- Joined
- Jul 30, 2010
- Messages
- 321
I am trying to use the code below to count the number of characters in a box consisting of many merged cells. I have named the range "Summary". When I run the script Len continues to return 0 no matter what I put in the "Summary" area. What am I doing wrong here?
Code:
Sub AutoResizeText()
Dim LResult As Long
LResult = Len(Summary)
Range("A54").Value = LResult
End Sub