-
-
Notifications
You must be signed in to change notification settings - Fork 512
Cell formatting functions #559
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
Comments
sure, it's on the list, it's also at the top here |
Hi Felix - this page is emtpy: |
It changed to: http://docs.xlwings.org/en/stable/missing_features.html, I'll update it on uservoice |
Thanks for pointing out the uservoice page. I've added my vote. |
More detail on the workarounds is at: http://nbviewer.jupyter.org/github/pybokeh/jupyter_notebooks/blob/master/xlwings/Excel_Formatting.ipynb |
@fzumstein , suppose that someone wanted to add formatting support to xlwings. What should the API look like? Refer #302 where some preferences were expressed. |
I think that comment is still right, the whole api is now very close to the original, so no need to deviate for font etc. |
Does anyone have examples similar to the Jupyter notebook above but for OSX/Mac Excel? Specifically I'm trying to set the font color of a cell or range. Even just that snippet would be helpful, thanks! |
You can workaround like this:
|
Thanks!
…_________________________
Rishi Patel | mail@rishinyc.com
On Wed, Apr 26, 2017 at 2:44 AM, Felix Zumstein ***@***.***> wrote:
You can workaround like this:
import xlwings as xw
rgb_tuple = (255, 0, 0)
xw.Range('A1').api.font_object.color.set(rgb_tuple)
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#559 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/ADn5wXs2iqvNDdRsIKp03u4IBmqVqUCKks5rzxHugaJpZM4J0U4E>
.
|
0.23.0 added support for these:
so only the following missing from this list:
|
It would be really great if additional functions for changing cell formatting could be implemented. In my personal opinion the most important cell formatting characteristics that are currently still unsupported are:
The text was updated successfully, but these errors were encountered: