Thanks for your reply, "shg" - I am now further with my project, but not much.
I've now changed the class properties slightly so that I can return both the full array of row numbers and individual row numbers from the array. To accomplish this I've created a sub that creates the array and simplified the property procedures (and am hoping this is the way to do it). However, when I now run the code I get runtime 91 error (with block not set) at a point that didn't previously stick. I think the issue could be the method or location of the line that calls the sub but i can't be sure. The following extract is within the cCampaigns class that creates a 'cCampaign':
Sub Add(Name As String, Optional Duration As Integer, Optional Rate As Integer, Optional Seats As Integer)
'create a new campaign and add to collection
Dim c As New cCampaign
c.Name = Name
c.Duration = Duration
c.Rate = Rate
c.Seats = Seats
Campaigns.Add c
c.assignRowNums
End Sub
The assignRowNums code sits within the cCampaign class module and is as follows:
Sub assignRowNums()
Dim pplSheet As String
Dim Campaigns As cCampaigns
Dim c As Range
pplSheet = "TEST - DO NOT UPDATE (2)"
For Each c In Worksheets(pplSheet).Range("A1:A" & getNextEmptyRow(pplSheet)).Cells
For i = 1 To Campaigns.Count
If c.value = Campaigns.Item(i).Name Then
ReDim Preserve pRowNums(UBound(pRowNums) + 1)
pRowNums(UBound(pRowNums)) = c.Row
End If
Next i
Next c
End Sub
Any clues/solutions to why this doesn't work will be much appreciated.
Bookmarks