I'm new to R and even newer to using it with Excel. I want to get a list of all the worksheet names (Notes,Weights,Lengths) in an .xls file. You can see what I'm trying below - the problem is that the output has a $ dollar sign at the end for some reason and is sometimes also surrounded with single quotes.

FileToImport <- "C:\\folder\\filetoimport.xls"

z <- odbcConnectExcel(FileToImport, readOnly = TRUE)

sqlTables(z)
TABLE_CAT TABLE_SCHEM         TABLE_NAME   TABLE_TYPE REMARKS
1 C:\\folder\\filetoimport.xls <NA>     Notes$ SYSTEM TABLE    <NA>
2 C:\\folder\\filetoimport.xls <NA> 'Weights$'        TABLE    <NA>
3 C:\\folder\\filetoimport.xls <NA> 'Lengths$'        TABLE    <NA>

sqlTables(z)[,"TABLE_NAME"]

[1] "Notes$"             "'Weights$'" "'Lengths$'"

I could try to clean these characters up but I don't really know how to go about this since the quotes format is inconsistent - some of the workbooks are "SYSTEM TABLEs" and some are just "TABLEs". Could someone explain what the difference between these worksheets is and give me an idea of how to recreate just the 'clean' tabnames?

link|improve this question

I have little experience with Excel/RODBC, but is a workbook identical to a worksheet? For cleaning names, you could try regular expressions. – Roman Luštrik Jan 17 at 12:32
Yes sorry, I was only talking about worksheets the whole way through. I thought of regular expressions, but I can't write them! Can anybody give me a tip how to remove the single quotes and dollar sign from the names then? – SWilliams Jan 17 at 13:34
I worked out how to do the reg exp to get the desired output, thanks. gsub("[[:punct:]]","",sqlTables(z)[,"TABLE_NAME"]) [1] "Sheet1" "Sheet2" "Sheet3" – SWilliams Jan 17 at 14:28
Put that as an answer and accept it (when the system allows accepting your own answer). Make sure you drop a comment so that I can upvote the answer. :) – Roman Luštrik Jan 17 at 15:24
@RomanLuštrik Thanks – SWilliams Jan 27 at 10:13
feedback

2 Answers

up vote 2 down vote accepted

Thanks to the above nudge in the right direction, I managed to use regular expressions to get the worksheet names in the desired output (without any punctuation).

gsub("[[:punct:]]","",sqlTables(z)[,"TABLE_NAME"]) 
[1] "Sheet1" "Sheet2" "Sheet3"
link|improve this answer
feedback

I have not much experience with RODBC but do you mean the following output by clean?

 data.frame(sqlTables(z))$TABLE_NAME
 [1] "Sheet1$"  "Sheet2$"  "Sheet3$"  "ZRDaten1"

if you save that in a vector say b you can access them with z[i]. If you only need a certain type what about:

 na.omit(ifelse(data.frame(sqlTables(z))$TABLE_TYPE=='SYSTEM TABLE', data.frame(sqlTables(z))$TABLE_NAME, NA))
 [1] "Sheet1$" "Sheet2$" "Sheet3$"

admittedly unelegant....

link|improve this answer
Thanks for the effort but I found what I was looking for by going with the above suggestion of regular expressions. – SWilliams Jan 17 at 14:26
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.