Forum Discussion
danb
1 year agoResolver I
DAX - Crossjoin with Criteria
I have been asking Copilot but without success so coming to the real experts! I have two tables, one called 'BrandForecast' and the other 'Running Calendar'. I am trying to figure out how to do a...
- 1 year ago
create a calculatedtable as below :
filter (
crossjoin ( table1 , table2 ) ,
[Week Starting (Monday Start) >= [Promotion Start Date] && [Week Starting (Monday Start) <= [Promotion End Date]
)
hope this helps .
Daniel29195
1 year agoCommunity Champion
create a calculatedtable as below :
filter (
crossjoin ( table1 , table2 ) ,
[Week Starting (Monday Start) >= [Promotion Start Date] && [Week Starting (Monday Start) <= [Promotion End Date]
)
hope this helps .
danb
1 year agoResolver I
Appreciate it! I was trying =calculatetable(crossjoin(... and it wasn't working. Simpler is better!