Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
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
Check out the September 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
25 | |
20 | |
18 | |
17 | |
16 |
User | Count |
---|---|
34 | |
21 | |
19 | |
18 | |
11 |