automated import of csv files into excel

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 ?
 
D

Dick Kusleika

weka

You can open CSV files natively in Excel. Just use

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