Skip to content
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

[feature suggestions] Remove dispersed cells; sort colums/rows afterwards #14

Open
noyannus opened this issue Jul 14, 2023 · 0 comments

Comments

@noyannus
Copy link

Is it possible to remove cells when part of their rows or columns is not empty?

From

|a| |a|a|
|b|a|b| |
| |b|c|b|
|c|c| |c|

to

|a|a|a|a|
|b|b|b|b|
|c|c|c|b|

, and the same for rows, shifting the cells to the right of empty cells left.

This will be very resource intensive for large spreadsheets, but those who have to process them frequently usually have better means than a manual cleanup. And for the rest of us it would be very useful.

And if you really want to have fun, give us the option to sort each individual column or row after the empties are gone:

From

|a| |c|b|
|c|c|a| |
| |a|b|a|
|b|b| |c|

to

|a|c|c|b|
|c|a|a|a|
|b|b|b|c|

to

|a|a|a|a|
|b|b|b|b|
|c|c|c|b|

There is no good option to do this; for larger numbers of columns or rows; doing it manually is really tedious.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant