Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

autofill = FALSE does not work? #92

Closed
daeyoonlee opened this issue Jul 3, 2021 · 1 comment
Closed

autofill = FALSE does not work? #92

daeyoonlee opened this issue Jul 3, 2021 · 1 comment
Labels
question Further information is requested

Comments

@daeyoonlee
Copy link

daeyoonlee commented Jul 3, 2021

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.

image

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):

  • OS: ubuntu 20.04
  • Browser : chrome
  • Version latest version
@Swechhya
Copy link
Owner

@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.

@Swechhya Swechhya added the question Further information is requested label Jul 22, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
question Further information is requested
Projects
None yet
Development

No branches or pull requests

2 participants