Join GitHub today
GitHub is home to over 20 million developers working together to host and review code, manage projects, and build software together.
to_excel should (optionally) freeze panes #15160
Comments
sinhrks
added Enhancement IO Excel
labels
Jan 19, 2017
|
sure lots of thinks that pandas could do with the updates in the openpyxl style API. love to have PR's! |
jreback
added Difficulty Intermediate Effort Medium
labels
Jan 19, 2017
jreback
added this to the
Next Major Release
milestone
Jan 19, 2017
|
Here's the same for |
|
The other header display feature that might be woeth having as an option is
an AutoFilter.
…
|
This was referenced Feb 2, 2017
jreback
modified the milestone: 0.20.0, Next Major Release
Feb 7, 2017
jreback
closed this
in 9b5d848
Feb 16, 2017
|
yay! thanks
…
|
jeffcarey
referenced
this issue
Mar 6, 2017
Closed
Moved freeze_panes validation to io/excel.py (#15160) #15592
jreback
added a commit
that referenced
this issue
Mar 7, 2017
|
|
jeffcarey + jreback |
1123982
|
AnkurDedania
added a commit
to AnkurDedania/pandas
that referenced
this issue
Mar 21, 2017
|
|
jeffcarey + AnkurDedania |
43aba17
|
AnkurDedania
added a commit
to AnkurDedania/pandas
that referenced
this issue
Mar 21, 2017
|
|
jeffcarey + AnkurDedania |
69902bd
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
jnothman commentedJan 19, 2017
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_celland 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.