【问题标题】:Is it possible to transpose a column of text values into a single row without duplicates, using a single Google Sheets formula?是否可以使用单个 Google 表格公式将一列文本值转换为没有重复的单行?
【发布时间】:2020-04-30 19:25:41
【问题描述】:

我在一列中有一些数据是动态的,并且会自动添加到:

Brand 1
Brand 2
Brand 3
Brand 4
Brand 5
Brand 2
Brand 2

是否可以将这些转置而不重复成为连续的标题,理想情况下只需在品牌 1 单元格中添加一个公式?

例如Brand 1, Brand 2, Brand 3, Brand 4, Brand 5

【问题讨论】:

  • 您不能在品牌 1 单元格中添加公式,对吧?必须在单独的单元格中。
  • 是的,没错。

标签: arrays google-sheets unique google-sheets-formula transpose


【解决方案1】:

您可以使用transposeunique

=transpose(unique(A1:A))

【讨论】:

    【解决方案2】:

    如果需要跳过空格,请添加FILTER

    =TRANSPOSE(UNIQUE(FILTER(A1:A, A1:A<>"")))
    

    【讨论】:

      猜你喜欢
      • 2020-08-15
      • 2023-03-20
      • 1970-01-01
      • 2018-01-12
      • 1970-01-01
      • 2021-05-07
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多