I have a spreadsheet that is linked to astock market data provider to give real-timedata on a 1-minute basis. The data I receiveis constantly overwritten in the same cells.I would like to "grab" this data and storeit in another set of columns. How do I do this?For example:Received data:........ Col A ............... Col B . Col CRow 1 .. 3/23/05 9:32:00 AM .. INDU .. 10400.34Stored data:........ Col E ............... Col F . Col GRow 1 .. 3/23/05 9:30:00 AM .. INDU .. 10408.22Row 2 .. 3/23/05 9:31:00 AM .. INDU .. 10405.16Row 3 .. 3/23/05 9:32:00 AM .. INDU .. 10400.34I found the following code snipped in Excel Help..Sub Worksheet_Change(ByVal Target as Range).. Target.Font.ColorIndex = 5End Sub.. but I can't figure out how do declare or set"Target". Any ideas?
I'm not sure I completely understand what you are trying to do,but "target" is a Range object, within which are cells to whichcalues can be assigned, or extracted. Can you post the rest of thecode?