-
Notifications
You must be signed in to change notification settings - Fork 3
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
Implement thousands comma-separators by default #51
Comments
This is kind of complex. The styling will occur when the column is full of numerics, but if it's character due to to a suppressed value, then the commas won't be shown. Probably means that the thousands-separator styling will have to be dynamically applied by identifying the rows that have numbers in (e.g. coerce them to numeric and see if a non-NA result emerges). |
Note the options for {openxlsx} could also be set to allow for the comma separator, as mentioned in #69, but this still won't work with columns that contain a placeholder or other string content. |
Consider applying |
Current thoughts: create a function to dynamically construct a To actually apply this approach, we'd need to replace the non-numeric values in a provided column with NA, e.g. replace a placeholder like |
There has been a request to:
(Also, this is a reminder to look over the guidance in detail to extract all these kinds of cell-level features.)
The text was updated successfully, but these errors were encountered: