How to copy specific Excel cells in R?

r

As you can see, I need to copy cells from B7 to G8, how to do that?

I think you can use the readxl package. See here: https://readxl.tidyverse.org/

Here's some of the exampels

read_excel(xlsx_example, range = "C1:E4")
read_excel(xlsx_example, range = "mtcars!B1:D5")

Wow, thanks!! I am wondering how I didn't found that on google... What did you googled? Oh I noticed it now.. I was searching rows instead of cells...

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.