Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now
Hello,
I have a new PBI challenge for myself, I new to create a table that duplicate distinct values from two tables. One column is calendar(date) (from calendar table), the second column is product(id) (from product table).
Below is an example of what I need.
Date | Product_ID |
01/01/2022 | 44 |
01/01/2022 | 45 |
02/01/2022 | 44 |
02/01/2022 | 45 |
I really don't know if it is possible to do it threw DAX.
Thanks a lot for your help,
Paul
Solved! Go to Solution.
Hi @PaulMGNT
if you are lioking for a calculated table then
CROSSJOIN ( VALUES ( 'Calendar'[Date] ), VALUES ( 'Product'[ID] ) )
Hi @PaulMGNT
if you are lioking for a calculated table then
CROSSJOIN ( VALUES ( 'Calendar'[Date] ), VALUES ( 'Product'[ID] ) )
Hi tamerj1,
this is great, thanks a lot.
Paul
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
26 | |
20 | |
19 | |
14 | |
13 |
User | Count |
---|---|
44 | |
36 | |
24 | |
24 | |
22 |