-
-
Notifications
You must be signed in to change notification settings - Fork 298
Add a new ColumnsGuide #2527
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
Merged
+53
−1
Merged
Add a new ColumnsGuide #2527
Changes from 1 commit
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
# Rename, hide and resize columns | ||
|
||
How to rename, hide, and resize columns to focus on key data. These actions | ||
help organize the sheet, making it easier to prioritize information | ||
and reduce distractions. | ||
|
||
# Renaming columns | ||
|
||
- {help.commands.rename_col} | ||
|
||
## Renaming one or more columns using data | ||
|
||
Rename one or more columns using data from the sheet: | ||
|
||
- {help.commands.rename_col_selected} | ||
- {help.commands.rename_cols_row} | ||
- {help.commands.rename_cols_selected} | ||
|
||
## Clean column names | ||
|
||
Rename columns to be valid python identifiers that can be used in column | ||
expressions. | ||
|
||
- {help.commands.normalize_col_names} | ||
- {help.commands.clean_names} | ||
|
||
# Hiding and Unhiding columns | ||
|
||
Clean up the sheet by hiding unwanted columns. Hidden columns are still present, just not visible. | ||
|
||
- {help.commands.hide_col}. | ||
- {help.commands.unhide_cols} | ||
|
||
Use the {help.commands.columns_sheet} to control visibility as well. | ||
|
||
# Resizing columns | ||
|
||
## Resize the current column | ||
|
||
- {help.commands.resize_col_max} | ||
- {help.commands.resize_col_input} | ||
- {help.commands.resize_col_half} | ||
|
||
## Resize multiple columns | ||
|
||
- {help.commands.resize_cols_input} | ||
|
||
# Changing row height | ||
|
||
Sometimes the data for a cell will not fit within the current width. If the | ||
data is large, or spans multiple lines, change the row height to show more for | ||
the current column width. Row height adjustments can also be combined with | ||
column width changes. | ||
|
||
- {help.commands.toggle_multiline} | ||
- {help.commands.resize_height_input} | ||
- {help.commands.resize_height_max} | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
In the upcoming version, hidden columns are 1 character columns on the right, which can be unhidden with
_
.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.
interesting! I see how that would make it much easier to understand what is going on.