-
-
Notifications
You must be signed in to change notification settings - Fork 18.5k
to_excel should (optionally) freeze panes #15160
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
Labels
Milestone
Comments
sure lots of thinks that pandas could do with the updates in the openpyxl style API. love to have PR's! |
Here's the same for |
The other header display feature that might be woeth having as an option is
an AutoFilter.
…On 20 January 2017 at 23:39, chris-b1 ***@***.***> wrote:
Here's the same for xlsxwriter. My preference would be not have it as a
default, but agree it would be a nice addition.
http://xlsxwriter.readthedocs.io/example_panes.html
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#15160 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AAEz6wVGhKQXvPiugDQpcP_STKumNVrpks5rUKsGgaJpZM4Lns3W>
.
|
This was referenced Feb 2, 2017
yay! thanks
…On 17 Feb 2017 4:48 am, "Jeff Reback" ***@***.***> wrote:
Closed #15160 <#15160> via
9b5d848
<9b5d848>
.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#15160 (comment)>, or mute
the thread
<https://github.com/notifications/unsubscribe-auth/AAEz6-g2EHKp2vayA0DFjpmE5TjOopqWks5rdIvOgaJpZM4Lns3W>
.
|
2 tasks
AnkurDedania
pushed a commit
to AnkurDedania/pandas
that referenced
this issue
Mar 21, 2017
…dev#15160) closes pandas-dev#15160 Author: Jeff Carey <jeff.carey@gmail.com> Closes pandas-dev#15291 from jeffcarey/enh-15160 and squashes the following commits: cef8fce [Jeff Carey] ENH: Added ability to freeze panes from DataFrame.to_excel()
AnkurDedania
pushed a commit
to AnkurDedania/pandas
that referenced
this issue
Mar 21, 2017
follow up to pandas-dev#15160 Author: Jeff Carey <jeff.carey@gmail.com> Closes pandas-dev#15592 from jeffcarey/enh-15160-touchup2 and squashes the following commits: 81cb86f [Jeff Carey] Cleaned up freeze_panes validation code a802fc7 [Jeff Carey] Moved freeze_panes validation to io/excel.py
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
DataFrame.to_excel()
is currently helpful in styling column and row headers distinctly from values. One other simple feature Excel provides to manage headers is "freeze panes". Panes can be frozen such that the column and row headers are fixed. This is achieved in openpyxl withworksheet.freeze_panes = top_left_value_cell
and in xlwt withworksheet.freeze_panes(bottommost_header_row, leftmost_header_col)
.I think making this available, as an option or by default, would give a valuable usability boost to the exported Excel spreadsheets.
The text was updated successfully, but these errors were encountered: