-
Notifications
You must be signed in to change notification settings - Fork 76
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
writeData()
force evaluation of x
before options are set
#265
Conversation
Codecov Report
@@ Coverage Diff @@
## master #265 +/- ##
=======================================
Coverage 66.36% 66.37%
=======================================
Files 34 34
Lines 8965 8966 +1
=======================================
+ Hits 5950 5951 +1
Misses 3015 3015
Continue to review full report at Codecov.
|
writeData()
force evaluation of x
before options are set
out <- read.xlsx(wbfile) | ||
|
||
# Possibly overkill | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🤣 Just my thoughts
NEWS.md
Outdated
@@ -9,12 +9,11 @@ | |||
* add option to save as read only recommended ([#201](/~https://github.com/ychps/openxlsx/issues/201)) | |||
* fixed writing hyperlink formulas ([#200](/~https://github.com/ychps/openxlsx/issues/200)) | |||
* `write.xlsx()` now throws an error if it doesn't have write permissions ([#190](/~https://github.com/ycphs/openxlsx/issues/190)) | |||
* `write.xlsx()` now again uses the default of `overwrite = TRUE` for saving files ([#249](/~https://github.com/ycphs/openxlsx/issues/249)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why did you remove this?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
By mistake probably. Didn't notice this.
Thanks, simple and elegant! LGTM! |
could you please rebase on/or merge with master? |
merged in d2f7e03 , thanks |
Simply using
force(x)
before options seems to do the trick.No local test fails.
resolves #264