Forum Discussion
BrianRiggin
3 years agoFrequent Visitor
Combining Two DAX Expression Tables into One... Uniquely?
Sorry, I'm sure there is a word or term to describe how I'm trying to combine/merge/??? them other than "uniquely", but I couldn't think of it. I need to build a custom DAX table from two other D...
- 3 years ago
Hi BrianRiggin ,
you can use CROSSJOIN function.
CROSSJOIN ('Table1','Table2')
If this post helps, please mark it as solution!!!
mangaus1111
3 years agoSolution Sage
Hi BrianRiggin ,
you can use CROSSJOIN function.
CROSSJOIN ('Table1','Table2')
If this post helps, please mark it as solution!!!
BrianRiggin
3 years agoFrequent Visitor
That was perfect! Thanks! Also, I guess the term I was looking for was a "Cartesian Product" rather than "...uniquely". So I learned two things!