Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi everyone,
I have the following code ... Option Explicit Option Base 1 Public Sub Test() Dim RowData As Range Dim C As Long Dim CombData As String Dim CombNum As Integer CombNum = 1 <--------- For Each RowData In ActiveSheet.UsedRange.Rows With RowData If C 0 Then CombNum = CombNum + 1 CombData = "" For C = 1 To 5 CombData = CombData & .Cells(1, C).Value & "," Next C CombData = CombData & .Cells(1, 6).Value Debug.Print "Set " & CombNum & "," & CombData End With Next RowData End Sub .... which does produce the right information in the right format. I would like to amend the code to pick up the groups on a sheet named "Groups" and in Cells "B3:G?". The groups could be 1 to whatever. The other thing is that I have had to set the CombNum to 1 when I think it should start at zero. If there is a better way to code this I would appreciate any pointers. Thanks in dvance. All the Best. Paul |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
amend a VB code please | Excel Discussion (Misc queries) | |||
Amend the Code | Excel Programming | |||
Amend code | Excel Programming | |||
Amend code or change it completely? | Excel Programming | |||
Amend form code to allow an option | Excel Programming |