Need help with indirect variable naming

greenythebeast

New Member
Joined
Oct 28, 2015
Messages
3
Hi all,

I am struggling to figure out how to accomplish indirect variable naming. I've included my code below (feel free to offer any tips!). Essentially, I am going through a worksheet that has purchase orders and I'm trying to create a collection of all unique PO numbers along with their info. Instead of all SKUs being on one line for each PO, a new line with the same PO number is added when there are more than 1 SKU on the order. The code I've written below does a decent job when there is 1 SKU, but I can't figure out how best to integrate more than 1 SKU. I've essentially made it so if the key (poNumber) doesn't exist, add a new class member, otherwise update the SKU2 property of the existing key. How can I update my code so that if there is more than 2 SKUs it updates the correct property? Same with skuCount. Appreciate all your help!

P.S. Is a collection the best way to do this? Would a dictionary work better?

packersPO class module:
Code:
Option Explicit

'List of class properties
Public poNumber As String
Public poDate As Date
Public poOrderNumber As String
Public poShipTo As String
Public poPhone As String
Public poAddress1 As String
Public poAddress2 As String
Public poAddress3 As String
Public poZIP As String
Public poCity As String
Public poState As String
Public poCountry As String
Public poSKU1 As String
Public poQty1 As Long
Public poSKU2 As String
Public poQty2 As Long
Public poSKU3 As String
Public poQty3 As Long
Public poSKU4 As String
Public poQty4 As Long
Public poSKU5 As String
Public poQty5 As Long
Public poDescription As String
Public poSize As String
Public poColor As String
Public poCost As Currency
Public poPersonalization1 As String
Public poPersonalization2 As String
Public poPersonalization3 As String
Public skuCount As Long

Module:
Code:
Public Sub POClass()

Dim coll As collection
Dim dataItems As packersPO
Dim poNumber As String
Dim ws As Worksheet
Dim r As Long

Set ws = ActiveSheet
Set coll = New collection

Dim lastRow As Long
lastRow = ws.Cells(Rows.count, "A").End(xlUp).Row

For r = 2 To lastRow

    'Retrieve PO Number for key assignment
    poNumber = CStr(ws.Cells(r, "A").Value2)

    'Check if key already exists
    Set dataItems = Nothing: On Error Resume Next
    Set dataItems = coll(poNumber): On Error GoTo 0

    'If key doesn't exist, create a new class object
    If dataItems Is Nothing Then
        Set dataItems = New packersPO
        dataItems.poNumber = CStr(ws.Cells(r, "A").Value2)
        dataItems.poDate = CDate(ws.Cells(r, "B").Value2)
        dataItems.poOrderNumber = CStr(ws.Cells(r, "C").Value2)
        dataItems.poShipTo = CStr(ws.Cells(r, "D").Value2)
        dataItems.poPhone = CStr(ws.Cells(r, "E").Value2)
        dataItems.poAddress1 = CStr(ws.Cells(r, "F").Value2)
        dataItems.poAddress2 = CStr(ws.Cells(r, "G").Value2)
        dataItems.poAddress3 = CStr(ws.Cells(r, "H").Value2)
        dataItems.poZIP = CStr(ws.Cells(r, "I").Value2)
        dataItems.poCity = CStr(ws.Cells(r, "J").Value2)
        dataItems.poState = CStr(ws.Cells(r, "K").Value2)
        dataItems.poCountry = CStr(ws.Cells(r, "L").Value2)
        dataItems.poSKU1 = CStr(ws.Cells(r, "M").Value2)
        dataItems.poQty1 = CLng(ws.Cells(r, "N").Value2)
        dataItems.poDescription = CStr(ws.Cells(r, "O").Value2)
        dataItems.poSize = CStr(ws.Cells(r, "P").Value2)
        dataItems.poColor = CStr(ws.Cells(r, "Q").Value2)
        dataItems.poCost = CCur(ws.Cells(r, "R").Value2)
        dataItems.poPersonalization1 = CStr(ws.Cells(r, "S").Value2)
        dataItems.poPersonalization2 = CStr(ws.Cells(r, "T").Value2)
        dataItems.poPersonalization3 = CStr(ws.Cells(r, "U").Value2)
        dataItems.skuCount = 1
        coll.Add dataItems, poNumber
    Else
        dataItems.poSKU2 = CStr(ws.Cells(r, "M").Value2)
        dataItems.poQty2 = CStr(ws.Cells(r, "N").Value2)
    End If

Next

End Sub

Also asked here Need help with indirect variable naming
 
Last edited by a moderator:

Excel Facts

Return population for a City
If you have a list of cities in A2:A100, use Data, Geography. Then =A2.Population and copy down.

Forum statistics

Threads
1,215,069
Messages
6,122,959
Members
449,096
Latest member
Anshu121

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top