如何连接数据集中某列下的不同值,并将结果显示在表或文本框中?例如:
数据集:
+----+------+
| ID | Pet |
+----+------+
| 1 | Cat |
+----+------+
| 2 | Dog |
+----+------+
| 3 | Frog |
+----+------+
| 4 | Dog |
+----+------+
结果:
+-----+----------------+
| Pet | Cat, Dog, Frog |
+-----+----------------+
我在网上找到的所有内容都在使用Join + LookUpSet。我找到了this answer并尝试过:
=Join(LookUpSet(Fields!Pet.Value, Fields!Pet.Value, Fields!Pet.Value, "PetsDS"), ", ")
但是,它只给我第一项。