PC Review


Reply
Thread Tools Rate Thread

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

 
 
=?Utf-8?B?U3RvY2sgVHJhZGVy?=
Guest
Posts: n/a
 
      9th Oct 2007
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.

 
Reply With Quote
 
 
 
 
Gord Dibben
Guest
Posts: n/a
 
      9th Oct 2007
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
(E-Mail Removed)> wrote:

>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.
>


 
Reply With Quote
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
consolidate data (i.e. a single cell) from multiple spreadsheets intoa single sheet James Sheriff Microsoft Excel Programming 4 4th Aug 2010 05:35 PM
consolidate data (i.e. a single cell) from multiple spreadsheets intoa single sheet James Sheriff Microsoft Excel Discussion 1 4th Aug 2010 03:56 PM
collecting cell data from every 33rd row =?Utf-8?B?UmViZWNjYQ==?= Microsoft Excel Worksheet Functions 4 22nd Jul 2005 03:42 PM
Putting data in a cell before save. =?Utf-8?B?c21pbGV5?= Microsoft Access Macros 1 27th Jan 2005 08:24 PM
Re: Putting several peices of data in each cell of a datagrid Steve C. Orr, MCSD Microsoft ASP .NET 0 24th Jul 2003 11:33 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 06:48 PM.