Google 表格。生成序列 ID

Google sheets. Generate sequence ID

提问人:xiii 提问时间:11/2/2023 更新时间:11/2/2023 访问量:57

问:

我需要在“数量”列中生成数量中的“ID”。

我使用公式“=ArrayFormula(TOCOL(”T“&TEXT( sequence(C2);”00“)&”“&$A 2&”|”&$B 2))”。 它仅为第一个产品生成 ID。如何为整个 ID 数组生成 ID?示例文件

google-sheets google-sheets-formula 序列

评论


答:

1赞 rockinfreakshow 11/2/2023 #1

您可以尝试:

=tocol(map(A2:A;B2:B;C2:C;lambda(a;b;c;if(counta({a\b\c})<>3;;index("T"&text(sequence(1;c);"00")&a&"|"&b))));1)

enter image description here