I want to clean multiple .xls
data files using R package RODBC
. All the .xls files have the same
format as follows. In the first 13 rows, there are discriptions for the data file (obviously they are character data). Then from the 15 row, there are date data and numeric data which are actually what I need.
I'm trying to read with sqlFetch from RODBC. The data that is returned by sqlFetch is unfortunately not identical to the source data in that the cells filled with the date data and numeric values are not returned properly but all set to . How to correct this error? Thanks.