openxlsx Questions

2

currently I am preparing an R-lesson for a customer. We want to read in data from a password protected xlsx file. Thus, I am trying to read this password protected xlsx file into R (unprotecting th...
Toothsome asked 8/2, 2021 at 9:19

2

Solved

I am trying to export from R to excel an dataframe with two columns which I want to fill with the excel if formula so that the user could later on change the thresholds. My question is how can I ex...
Ibis asked 21/11, 2017 at 9:26

2

I loaded an Excel workbook in R and want to do some formatting of the borders in a rectangular range of cells. I would like to put a thin border between all cells put a thick border around the ...
Mercedes asked 23/1, 2019 at 8:23

5

is there a way to read an open excel file into R? When an excel file is open in Excel, Excel puts a lock on the file, such as the reading method in R cannot access the file. Can you circumvent this...
Filmer asked 13/7, 2022 at 8:54

1

I have automated the process of accessing VBA Macros, from R, using Openxlsx and RDCOMClient packages. Below is the code: Function: OpenExcel_5param <- function(directory,filename, MacroName,...
Codd asked 1/2, 2018 at 10:41

1

I'm dumping into a file a report, and I'm using openxlsx to do so, as it can be seen below: library(openxlsx) set.seed(100) dataset <- data.frame(A=runif(100),B=runif(100),C=sample(c("A","B",...
Frederiksen asked 30/5, 2018 at 9:43

5

Solved

The issue is that when I read from an excel sheet into R using read.xlsx from openxlsx package, the TIME column is converted into a fraction. Here is an example, dfin <- DATE TIME 15/02/2015 8...
Lauraine asked 1/2, 2019 at 6:56

2

Solved

I am trying to take in a data frame an excel sheet that has two columns, Column A contains names of stores Column B contains the URL of those stores. I would like to take Column A and make it ...
Simp asked 23/5, 2020 at 17:1

4

Solved

The openxlsx::write.xlsx function is overwriting spreadsheet instead of adding another tab. I tried do follow some orientations of Stackoverflow, but without sucess. dt.escrita <- format(Sys.t...
Joeyjoffre asked 30/7, 2019 at 18:58

3

I am trying to import the data in my Excel file into R using Openxlsx library: library(openxlsx) data <- read.xlsx("datafile.xlsx", sheet = "Sheet1") However, I get the foll...
Fellers asked 9/3, 2021 at 9:11

2

Can I make sure that two XLSX files (written with openxlsx::write.xlsx) are identical, when given the same data to write? I think there's a timestamp written to the spreadsheet which means the same...
Primateship asked 31/1, 2022 at 12:50

0

I want to bold part of a text string. For example, is there a way to only bold 'text' in 'this is my text string' using openxlsx R package: wb <- openxlsx::createWorkbook() openxlsx::addWorkshe...
Charlatan asked 14/1, 2022 at 13:18

6

Solved

I am using ‘openxlsx’ package in R. ٰI want to add some data in xlsx file. I have used following code to create the workbook and add worksheet in it. wb=createWorkbook() addWorksheet(wb,"sheet ...
Rabblement asked 9/11, 2018 at 6:49

1

Solved

I have been trying to obtain the time at which the content of an .xlsx file was created without any success so far. I can track the much-desired information on Windows either through File Propertie...
Velamen asked 14/5, 2021 at 18:36

3

Solved

I have a big Excel table (18k rows and 400 cols) which has some rows highlighted using different colors. Is there a way to filter the rows by colors using openxlsx? I first loaded the workbook wb &...
Papilloma asked 22/6, 2020 at 16:45

2

Solved

wight now I'having an issue with R. I could not use library openxlsx in my PC. When I try to import, these errors show me that: Error: package or namespace load failed for ‘openxlsx’: object ‘zip...
Kora asked 3/3, 2020 at 4:13

2

I'm trying to generate a .xlsx file through the Openxlsx package with a reactive name and header inside file (the input variables are "ASL.1" and "Year.1"). The object to be saved in the file is th...
Sigurd asked 20/6, 2018 at 12:15

2

Solved

The createStyle function in the openxlsx package has an argument numFmt, which allows you to create an excel format to be applied to specific cells in a .xlsx file. You can round values by specifyi...
Guileless asked 18/5, 2018 at 14:12

2

Solved

I am using "openxlsx" package to read and write excel files. I have a fixed file with a sheet called "Data" which is used by formulas in other sheets. I want to update this Data sheet without touch...
Escurial asked 9/12, 2015 at 6:46

2

Solved

I am trying to fill a row in an excel workbook with openxlsx based on text in a column from that row. For example, if cell C3 contains A then highlight row 3. Ideally, this would not be conditiona...
Hatchet asked 10/4, 2019 at 15:1

3

Solved

Lets consider this small example: df1<- data.frame(A=c(1,NA,"pvalue",0.0003),B=c(0.5,7,"I destroy","numbers all day"),stringsAsFactors = T) Write file: openxlsx::write.xlsx(df1,"Test.xlsx") ...
Chelonian asked 27/8, 2018 at 13:53

1

Solved

How can we save a workbook in a certain folder and make it available for user to download it? ref: Shiny + downloadHandler + Openxlsx does not generate a xlsx file Procedure: Create a data Save as...
Benford asked 13/1, 2020 at 14:19

3

Solved

I have a set of CSV files. I want to package them up and export the data to a single Excel file that contains multiple worksheets. I read in the CSV files as a set of data frames. My problem is ho...
Althaalthea asked 3/4, 2017 at 3:54

2

I use the write.xlsx() function (from the openxlsx package) to turn a list object into an excel spreadsheet, where each element of the list is converted into a "sheet" of the excel file. In the pas...
Inquisition asked 12/9, 2018 at 16:24

1

Solved

I would like to output data from R to an excel file, and have been using the openxlsx package. writeDataTable is the function I have been using. The problem is that I want the entries of one of th...
Corsage asked 29/8, 2019 at 17:44

© 2022 - 2024 — McMap. All rights reserved.