Forum Discussion
ronanfenelon
6 years agoNew Member
Help Needed; How To: Multiple tables sharing the same field on the shared axis to filter table
I have 4 tables which i ahave linked to the same column chart. Each table 4records a certain action taking place. the x axis filters by BAU (Location). When i have BAU from the cultivation activity o...
- 6 years ago
Hi ronanfenelon ,
We can create a calculated table and use it as the Shared axis after create relationship with other four tables:
BAU_Table = DISTINCT ( UNION ( DISTINCT ( 'Cultivation'[BAU] ), DISTINCT ( 'Health_Safety'[BAU_no] ), DISTINCT ( 'Maintenance'[BAU_no] ), DISTINCT ( 'Planting_FillingIn'[BAU_no] ) ) )
Best regards,
v-lid-msft
Community Support
6 years agoHi ronanfenelon ,
We can create a calculated table and use it as the Shared axis after create relationship with other four tables:
BAU_Table =
DISTINCT (
UNION (
DISTINCT ( 'Cultivation'[BAU] ),
DISTINCT ( 'Health_Safety'[BAU_no] ),
DISTINCT ( 'Maintenance'[BAU_no] ),
DISTINCT ( 'Planting_FillingIn'[BAU_no] )
)
)
Best regards,