You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
I want to copy all the numbers to the same value, but I don't know how.
Even with autofill = FALSE, if you grab the dot at the bottom right and lower it, the value will automatically increase.
@daeyoonlee You need to set the autoIncrement parameter to FALSE. The excelTable function would look like this: excelTable(data=data, autoFill = FALSE, columns = columns, autoIncrement = FALSE)
Closing this issue, feel free to open it again if this does not resolve your issue.
Describe the bug
I want to copy all the numbers to the same value, but I don't know how.
Even with autofill = FALSE, if you grab the dot at the bottom right and lower it, the value will automatically increase.
To Reproduce
library(excelR)
data = data.frame(Model = c(10,"","",""),
Date=c('2006-01-01', '2005-01-01','2004-01-01', '2003-01-01' ),
Availability = c(TRUE, FALSE, TRUE, TRUE))
columns = data.frame(title=c('Model', 'Date', 'Availability'),
width= c(300, 300, 300),
type=c('text', 'calendar', 'checkbox'))
excelTable(data=data, autoFill = FALSE, columns = columns)
Expected behavior
If autofill = FALSE, no auto increment.
Desktop (please complete the following information):
The text was updated successfully, but these errors were encountered: