Is there a way to create a many to many relationship in the Tabular model.
I have one table
Data
With Fields Project , Amount
I then have a project Device Table
With fields Project, Device
e.g. A, 1
A,2
A,3
B,1
B,2
I then have a project table
With fields Project
And a device table
With fields device
The issue is I want to see the data table by device and project.
The main data table contains 32 millions records and the project device table contains 10,000 combinations so a workaround by creating a new fact table by creating a full outer join on the two tables might be a little inefficient , thanks