S SS Dec 10, 2003 #1 Is it possible to get one cell to tell me how many characters are in another cell (counting spaces as characters)? ss
Is it possible to get one cell to tell me how many characters are in another cell (counting spaces as characters)? ss
L L. Howard Kittle Dec 10, 2003 #5 Hi again SS, Since you posted to a programming group perhaps you wanted a VBA solution. Sub TheLen() Dim i As String i = Len(Range("A1")) MsgBox i End Sub HTH Regards, Howard
Hi again SS, Since you posted to a programming group perhaps you wanted a VBA solution. Sub TheLen() Dim i As String i = Len(Range("A1")) MsgBox i End Sub HTH Regards, Howard
S SS Dec 10, 2003 #6 thanks. =len(A1) will do fine. I posted here 'cos in the past I've got better responses than in other excel groups. hope I'm not too off topic..... If I am then I'm sorry. SS
thanks. =len(A1) will do fine. I posted here 'cos in the past I've got better responses than in other excel groups. hope I'm not too off topic..... If I am then I'm sorry. SS