collecting data from a single cell and putting it into a columof c

G

Guest

How can I take a changing number from a single cell (c5) and put each
occurence into a colum. so if the first number in cell c5 is "6" then "6"
will be listed in cell f1, the second number refreshed in cell c5 is "-7"
(negative seven) then "-7" is inserted into cell f2, and so on.

once this is accomplished I would then like to use the collected data set to
run stats, or move data to a stat applacation I.E. Mini Tabs. I might need to
atach a time element to determin the number of changes per 5 minutes out of 6
halh hour range.

Additional Information

The single cell of changing data is linked to another excel API workbook,
which is linked to a "Trader Work Station" applacation. This is used to trade
stocks and I want to capture the number of shares being offerd at the current
bid price. This is the number which is constantly changing and is what I want
to capture.
 
G

Gord Dibben

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


Gord Dibben MS Excel MVP


On Tue, 9 Oct 2007 07:59:01 -0700, Stock Trader <Stock
 

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