I want to increment the total by the value of sump. Right now the msgBox is to make sure that the variable are correct, and they are. But I cannot figure out how to add each sump together.
For cc = 1 To 4 'calculate chosen sum for products 1 to 4
Range("Chosen").Cells(cc, 1).Select
For p = 1 To lastrow
Range("Proportion").Cells(p, 1).Select
sump = Range("Proportion").Cells(p, 1).Value * Range("NCustomers").Value * Range("Chosen").Cells(p, cc).Value 'WorksheetFunction.Sum(Range("Chosen").Rows(p))
MsgBox sump, vbOKCancel
Next p
Next cc
MsgBox Total
sump = sump + Range(....