Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!
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 DAX table expressions (one using FILTER, the other DISTINCT from source tables). How do??
DAX Expression 1 - DISTINCT(NameTable[Name])
a |
b |
DAX Expression 2 - FILTER(CALENDARAUTO(),[Date]>=[StartDateMeasure]&&[Date]<=[EndDateMeasure]&&WEEKDAY([Date])=3)
1 |
2 |
3 |
*Note: The measures are fixed dates. I'm essentially getting all the Tuesdays between two dates
Custom DAX Table
1 | a |
2 | a |
3 | a |
1 | b |
2 | b |
3 | b |
Solved! Go to Solution.
Hi @BrianRiggin ,
you can use CROSSJOIN function.
CROSSJOIN ('Table1','Table2')
If this post helps, please mark it as solution!!!
Hi @BrianRiggin ,
you can use CROSSJOIN function.
CROSSJOIN ('Table1','Table2')
If this post helps, please mark it as solution!!!
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!
Vote for your favorite vizzies from the Power BI World Championship submissions!
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 64 | |
| 51 | |
| 46 | |
| 23 | |
| 19 |
| User | Count |
|---|---|
| 136 | |
| 110 | |
| 50 | |
| 32 | |
| 29 |