私はこのようなことをしたい:
=related(othertable[aColumn])
ただし、一致する行が複数ある場合は、一致するすべてのaColumn
値を連結する必要があります。
このようなものですが、動作しています:
=concatenate(values(filter(othertable,othertable[bColumn]=[value in this table])))
私はこのようなことをしたい:
=related(othertable[aColumn])
ただし、一致する行が複数ある場合は、一致するすべてのaColumn
値を連結する必要があります。
このようなものですが、動作しています:
=concatenate(values(filter(othertable,othertable[bColumn]=[value in this table])))
DAX でこれを行う方法がわからなかったので、代わりに Power Query で行いました。
//using this as a start:
aTable = #table({"A","B","C"},{{1,"a",1},{1,"b",2},{2,"c",3},{3,"d",4}}),
//I'm concatenating text...so need to have a function stating what to concatenate with
fCombine = Combiner.CombineTextByDelimiter(":"),
aGroupRowsCat = Table.Group(
aTable,
{"A"},
{{"CatOfB", each fCombine([C]), type text}}
)
私は最終的に:
A|CatOfB
-+------
1|a:b
2|c
3|d