Forum Discussion
Filtrer sur une variable multiple
- Anonymous3 years ago
Hi Nattybb33 ,
According to your statement, I think you split [Activity] by "/" into column.
Here I suggest you to split [Activity] by "/" into row.
New Table:
Then create a DimActivity table and create a relationship between it and fact table.
DimActivity = VALUES('Table'[Activity])Measure:
Combine = CONCATENATEX('Table',[Activity],"/")Result is as below.
Best Regards,
Rico ZhouIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi Nattybb33 ,
According to your statement, I think you split [Activity] by "/" into column.
Here I suggest you to split [Activity] by "/" into row.
New Table:
Then create a DimActivity table and create a relationship between it and fact table.
DimActivity =
VALUES('Table'[Activity])
Measure:
Combine =
CONCATENATEX('Table',[Activity],"/")
Result is as below.
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- Nattybb333 years agoNew Member
Bonjour,
merci.