简体   繁体   English

将大写单元格与小写单元格分开排序

[英]Sort uppercase cells separately from lowercase ones

Sort uppercase cells separately from lowercase ones将大写单元格与小写单元格分开排序

Hi!你好!

I would like to resolve the following: I want to group cells with mixed content, numbers, lowercase and uppercase words into separate columns so I can sort them separately.我想解决以下问题:我想将具有混合内容、数字、小写和大写单词的单元格分组到单独的列中,以便我可以分别对它们进行排序。 Large tables, tens of thousands of cells, so it should be as automated as possible.大表,数以万计的单元格,因此应该尽可能自动化。

There are currently lowercase and uppercase words in a column, I just want to filter out the uppercase letters from them that come irregularly alternating with the lowercase letters one after the other.当前有一列中有小写和大写单词,我只想从中过滤掉不规则地与小写字母一个接一个交替出现的大写字母。

Even a good sort would be a solution, for example, to separate the lowercase letters from the uppercase letters with one sort, currently I could only type them in alphabetical order, which is not yet a choice between lowercase and uppercase letters.即使是好的排序也是一种解决方案,例如,用一种排序将小写字母与大写字母分开,目前我只能按字母顺序输入它们,这还不是小写字母和大写字母之间的选择。

Eg: a <z <A <Z or A <Z <a <z sorting would be the goal instead of sorting into an alphabet that does not pay attention to the current font size.例如:a <z <A <Z 或 A <Z <a <z 排序将是目标,而不是排序为不注意当前字体大小的字母表。

Now I use OpenOffice Calc (7.0.4.2), but every other solutions are welcome, like online tools or in google sheets.现在我使用 OpenOffice Calc (7.0.4.2),但欢迎所有其他解决方案,如在线工具或谷歌表格。

How could all this be solved?这一切怎么能解决?

Thanks in advance for your help.在此先感谢您的帮助。 :) :)

try FINDB in google sheets:在谷歌表格中尝试FINDB

=INDEX(SORT({A2:A, IFNA(FINDB(REGEXEXTRACT(A2:A, "^."), 
 JOIN(,CHAR(ROW(50:150)))))}, 2, 1),,1)

在此处输入图像描述

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 Google Sheet 比较大写和小写 - Google Sheet comparative uppercase and lowercase 如何将数字与字符串分开,数字应分别显示在Google表格中的单独单元格中 - How to separate numbers from string and the number should appear separately in separate cells in Google Sheets 密码生成 function 至少有1个数字,1个大写字母和1个小写字母 - Password generation function with at least 1 number, 1 uppercase letter and 1 lowercase letter Arrayformula 将非空白单元格之间的空白单元格编号为 0 到 n - Arrayformula to number blank cells between non-blank ones from 0 to n 将空单元格排序到顶部 - sort empty cells to top 在新单元格中组合两个单元格,用短划线和小写替换所有空格 - Combine two cells in a new cell, replace all spaces with dash, and lowercase 在 web 应用程序中,在我的谷歌工作表的所有工作表中搜索文本大写小写字母和符号 - search for a text uppercase lowercase and letters and signs in all the sheets of my google sheets, in a web app 即使用户在 Google 表格中输入或粘贴小写字母且没有警告,如何将单元格区域大写 - How to uppercase a cell range even if user type or paste lowercase with no warning in Google Sheet 如何在Google Spreadsheets中分别计算合并的单元格? - How do I count merged cells separately in Google Spreadsheets? 突出显示自动排序后移动的单元格 - Highlighting cells which move after auto sort
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM