automated import of csv files into excel

  • Thread starter Thread starter weka
  • Start date Start date
W

weka

I need to code an automated process when a csv type files is
automatically imported into excel, which in turn will be presented on a
web page using asp. How do I automaticlly import the csv file ?
 
weka

You can open CSV files natively in Excel. Just use

Workbooks.Open("C:\MyFile.csv")
 
Back
Top