Dear stata users,
is there a way to import excel binary file into stata?
Thank you very much for your help.
F
is there a way to import excel binary file into stata?
Thank you very much for your help.
F
winexec odbcconf configdsn "Microsoft Excel Driver (*.xls, *.xlsx, *.xlsm, *.xlsb)" "dsn=NameOfYourConnection|dbq=C:\example.xlsb"
odbc load, table(NameOfYourSheet$) connectionstring("DRIVER=Microsoft Excel Driver (*.xls, *.xlsx, *.xlsm, *.xlsb);dbq=C:\example.xlsb")
Comment