Forum Discussion
SteveMBSDO
Helper I
3 years agoCreate table with unique values from 2 dimension tables
Hello, I would like to create a new table from 2 dimension tables. The dimension tables are a dynamic date table and a table which contains different installations. There are 20 installations. ...
- 3 years ago
Hi SteveMBSDO
Table =
CROSSJOIN (ALLNOBLANKROW ( dimDate[Date] ),
ALLNOBLANKROW ( Installation[Installation] )
)
andhiii079845
Solution Sage
3 years agoYou need a date column in your installations table in the correct format (Date) and create a relationsship between both tables. Than you are able to create a matrix with the date column from the DIMTable and the installation column.
- tamerj13 years ago
Community Champion
Hi SteveMBSDO
Table =
CROSSJOIN (ALLNOBLANKROW ( dimDate[Date] ),
ALLNOBLANKROW ( Installation[Installation] )
)
- SteveMBSDO3 years ago
Helper I
Great! Wonderful, exactly what I was looking for :)! Thank you very much.
- SteveMBSDO3 years ago
Helper I
Thank you for your reply. I'm a bit confused. Do you want me to just add 1 column in the table with just 1 date for the 20 installations? How can I then make a Matrix?