Advertisement
Guest User

Untitled

a guest
Mar 3rd, 2015
191
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. Dim value As String
  2. value=Cells(1,1).Value
  3.  
  4. Dim value as string
  5. Dim x as Variant
  6. Dim i as integer
  7.  
  8. x = split(Cells(1,1),Chr(10))
  9. for i = 0 to ubound(x)
  10. value = value & x(i)
  11. Next i
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement