Warning: file_get_contents(/data/phpspider/zhask/data//catemap/5/google-sheets/3.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Google sheets 拆分数值并查找唯一的数字_Google Sheets_Split_Unique_Google Sheets Formula_Textjoin - Fatal编程技术网

Google sheets 拆分数值并查找唯一的数字

Google sheets 拆分数值并查找唯一的数字,google-sheets,split,unique,google-sheets-formula,textjoin,Google Sheets,Split,Unique,Google Sheets Formula,Textjoin,我有一个数据集,其中a列如下所示: 80419, 80038, 9306 7742 10638 10638 10694, 7738 8958, 7741 7706, 8537 7747, 8954 7747, 8954 7742 9907, 80465 10638 7747, 8954 7706, 8537 80040, 80043 80040, 80043 7747, 8954 80040, 80043 80040, 80043 80043 80043 80040, 80043 80040,

我有一个数据集,其中a列如下所示:

80419, 80038, 9306
7742
10638
10638
10694, 7738
8958, 7741
7706, 8537
7747, 8954
7747, 8954
7742
9907, 80465
10638
7747, 8954
7706, 8537
80040, 80043
80040, 80043
7747, 8954
80040, 80043
80040, 80043
80043
80043
80040, 80043
80040, 80043
80040, 80043
80040, 80043
80040, 80043
最后,我想从这个数据集中提取唯一的值

我曾尝试先拆分这些值,但我遇到了一个问题,即“80040”变成了8004。我需要在值的末端保留0

试试看:

=UNIQUE(TRANSPOSE(SPLIT(TEXTJOIN(",", 1, A1:A), ",")))

那么你是如何分割的呢?展示你尝试过但不起作用的东西!您可以将其包装到
SORT()
中,如果您希望对其进行排序,则此操作非常有效,player0。感谢您的快速回复和正确答案!