Read Excel Sheets

library(readxl)
X1a <- read_excel("Desktop/1a.xls")
View(X1a)
ex = excel_sheets("Desktop/1a.xls")
ex
datos = read_excel(" 1a.xls", sheet = "Footnotes")

I want to read the page Footnotes but I can not know how to do it. My English is not quite good and I have troubles to understand some papers.

Does this work?
datos = read_excel(“Desktop/1a.xls”, sheet = “Footnotes”)

2 Likes

Thanks! :slight_smile:

@IgorAzkune, if your question has been answered, would you mind marking the solution? That way, someone in the future can come along and easily see what worked for you. And this will marked the question as answered in questions list.

If you’re the OP (as you were in this case), there should be a little box at the bottom of replies that you can click to select that response as your “solution.”

2 Likes