If the store id's are in column A of Sheet1 and the product id's are in column B of Sheet1, then this macro:
Sub MakeComb()
Dim s1 As Worksheet
Dim s2 As Worksheet
Dim N1 As Long, N2 As Long, K As Long, I As Long, J As Long
Set s1 = Sheets("Sheet1")
Set s2 = Sheets("Sheet2")
K = 1
N1 = s1.Cells(Rows.Count, 1).End(xlUp).Row
N2 = s1.Cells(Rows.Count, 2).End(xlUp).Row
For I = 1 To N1
For J = 1 To N2
s2.Cells(K, 1) = s1.Cells(I, 1)
s2.Cells(K, 2) = s1.Cells(J, 2)
K = K + 1
Next
Next
End Sub
will produce the combinations in columns A & B of Sheet2
Bookmarks