View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Renster Renster is offline
external usenet poster
 
Posts: 3
Default Inserting rows from "unstable" csv

Folks,

I have the function below, which imports values from a column in a csv
that is generated elsewhere, and places the values in an empty row in
my spreadsheet. However, as it stands, when the column in the CSV is
updated with the next set of results, ALL generated rows are updated
with the latest values. What I need the function to do is to insert a
"snapshot" of the csv at that moment - ie, when the CSV changes,
previous rows in the xls are unaffected. Any clues?

Thanks

Steve

=======CODE=========

Sub LatestRun()
ActiveCell.Offset(1, 0).Select
Do While Not IsEmpty(ActiveCell)
ActiveCell.Offset(1, 0).Select
Loop

ActiveCell.FormulaR1C1 = "=today()"
For x = 2 To 17
ActiveCell.Offset(0, 1).Select
ActiveCell.Formula = "='C:\[rip-perform.csv]rip-perform'!$C$" & x
'ActiveCell.FormulaR16C1 = "='rip-perform.csv'!R2C1:R2C17"
Next
End Sub