ADODB Connection String for .csv
问题 I want to process .csv files with ADODB in Excel VBA. I tried a few strings found on web, but none of them seems to work. I'm getting file path using: strVFile = Application.GetOpenFilename("CSV (*.csv), *.csv") And then I pass strVFile as a parameter to the sub objReport.Load strVFile . The header of the sub is: Public Sub Load(ByVal strFilename As String) . Then I try to make ADODB connection using string: pconConnection.ConnectionString = _ "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" &