Running Totals

M

muziq2

Using the following I was able to create a running total column for th
specified cell.

Private Sub Worksheet_Change(ByVal Target As Excel.Range)
On Error GoTo stoppit
If Target.Address = "$A$2" And Target.Value <> "" Then
ActiveSheet.Cells(Rows.Count, 2).End(xlUp) _
.Offset(1, 0).Value = Target.Value
End If
stoppit:
End Sub

How would I edit this to have a seperate column for each cell in colum
A, say cells A2:A52 (i.e. cell A2 would be displayed in column B, cel
A3 would be displayed in column C, cell A4 would be displayed in colum
D, etc...)? Pleae help.

Thanks,

Jef
 
B

Bob Phillips

Jeff,

I think this is what you are asking for

Private Sub Worksheet_Change(ByVal Target As Excel.Range)
On Error GoTo stoppit
With Target
If .Column = 1 And .Value <> "" Then
Cells(Rows.Count, .Row).End(xlUp).Offset(1, 0).Value = .Value
End If
End With
stoppit:
End Sub

--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top