Thread
:
Setting varible to equal values of a # of cells
View Single Post
#
5
Posted to microsoft.public.excel.programming
Carim
external usenet poster
Posts: 510
Setting varible to equal values of a # of cells
Sub RWB()
Dim RWB As String
Dim i As Integer
For i = 1 To 50
RWB = RWB & Range("A" & i).Value
Next i
End Sub
All the Best
Carim
Reply With Quote
Carim
View Public Profile
Find all posts by Carim