Thread: adding strings
View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
julian brotherton julian brotherton is offline
external usenet poster
 
Posts: 2
Default adding strings

sub add_strings()
A = "4="
B = CELLS(ROW,"B") 'THE CONTENT OF THE CELLS IS 2
C= A + STR$(B)

END SUB

The result is 4= 2

I don't want the space between the 4= & the 2
Is there a way of combining the two, but removing the
leading space ??