获取特定类别的唯一值
Get unique values for a certain category
我正在尝试获取特定类别的唯一值:
您可以在此处找到示例电子表格:
https://docs.google.com/spreadsheets/d/13RNL6FiJNwZHb78Rkgksx3-JmkW9CGtc7N0WFK2X9A0/edit?usp=sharing
我挂在哪里,如何获取特定类别的值。然后我可以获得 unique function
并显示所有唯一值。
有什么建议吗?
感谢您的回复!
试试这个:
在 D1 中输入:
=unique(query(A1:B13,"select B where A= 'Category 1' label B 'Category 1'" ))
在 E1 中输入:
=unique(query(A1:B13,"select B where A= 'Category 2' label B 'Category 2'" ))
在 F1 中输入:
=unique(query(A1:B13,"select B where A= 'Category 3' label B 'Category 3'" ))
如果你不介意一栏所有数据,你可以试试:
={unique(query(A1:B13,"select B where A= 'Category 1' label B 'Category 1'" ));unique(query(A1:B13,"select B where A= 'Category 2' label B 'Category 2'" ));unique(query(A1:B13,"select B where A= 'Category 3' label B 'Category 3'" ))}
如果您的类别列表要扩展,您可以更改范围 ro A1:B 并添加 'and A is not null to the queries like:
=unique(query(A1:B,"select B where A= 'Category 1' and A is not null label B 'Category 1'" ))
我正在尝试获取特定类别的唯一值:
您可以在此处找到示例电子表格:
https://docs.google.com/spreadsheets/d/13RNL6FiJNwZHb78Rkgksx3-JmkW9CGtc7N0WFK2X9A0/edit?usp=sharing
我挂在哪里,如何获取特定类别的值。然后我可以获得 unique function
并显示所有唯一值。
有什么建议吗?
感谢您的回复!
试试这个: 在 D1 中输入:
=unique(query(A1:B13,"select B where A= 'Category 1' label B 'Category 1'" ))
在 E1 中输入:
=unique(query(A1:B13,"select B where A= 'Category 2' label B 'Category 2'" ))
在 F1 中输入:
=unique(query(A1:B13,"select B where A= 'Category 3' label B 'Category 3'" ))
如果你不介意一栏所有数据,你可以试试:
={unique(query(A1:B13,"select B where A= 'Category 1' label B 'Category 1'" ));unique(query(A1:B13,"select B where A= 'Category 2' label B 'Category 2'" ));unique(query(A1:B13,"select B where A= 'Category 3' label B 'Category 3'" ))}
如果您的类别列表要扩展,您可以更改范围 ro A1:B 并添加 'and A is not null to the queries like:
=unique(query(A1:B,"select B where A= 'Category 1' and A is not null label B 'Category 1'" ))