Full disclosure, I am a powerBI n00b. I am working on a report for data generated by an external system. This system exports data into different tabs in an excel sheet(lame, I know). I am needing to get a single filter to filter data from all 4 data sets. Let's say this column is "last name". I have tried to create these relationships, and it seems to work....however I am convinced this is not the proper way to handle this.
- Dataset1.Lastname --> Dataset2.Lastname
- Dataset2.Lastname --> Dataset3.Lastname
- Dataset3.Lastname --> Dataset4.Lastname
Cardinality of Many to Many, and a cross filter direction of both for each relationship
Alternatively, I read about creating a new table here, so I also tried this:
Lastname = DISTINCT(
UNION(
VALUES('Dataset1'[Lastname]),
VALUES('Dataset2'[Lastname]),
VALUES('Dataset3'[Lastname]),
VALUES('Dataset4'[Lastname]))
)
)
And created similar relationships above, with cardinality of many to many and cross filter direction of both.
Does anyone know of a better way? Thanks in advance(and I apologize for being obtuse)!