March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hi
I have added a new table using SUMMARIZE. All seemed to be working fine but I have just realised that some "Customers" do not have all dates which I need to display.
Is it is possible to create a table from 2 columns but displaying all possible combinations?
Customer | CreatedMonthAndYear |
AA | Feb 2024 |
BB | Mar 2024 |
CC | Apr 2024 |
Customer | CreatedMonthAndYear |
AA | Feb 2024 |
AA | Mar 2024 |
AA | Apr 2024 |
BB | Feb 2024 |
BB | Mar 2024 |
BB | Apr 2024 |
CC | Feb 2024 |
CC | Mar 2024 |
CC | Apr 2024 |
Any Help would be great
Thanks
Solved! Go to Solution.
Hi @Topjacket Using crossjoin, you would be able to create all kinds of possible combination. Try below code:
DesiredTable =
CROSSJOIN(
DISTINCT('Cases'[Customer Created]),
DISTINCT('Cases'[MonthAndYear])
)
Desired output:
Hope this helps!!
If this solved your problem, please accept it as a solution!!
Best Regards,
Shahariar Hafiz
Hi @Topjacket Using crossjoin, you would be able to create all kinds of possible combination. Try below code:
DesiredTable =
CROSSJOIN(
DISTINCT('Cases'[Customer Created]),
DISTINCT('Cases'[MonthAndYear])
)
Desired output:
Hope this helps!!
If this solved your problem, please accept it as a solution!!
Best Regards,
Shahariar Hafiz
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
23 | |
16 | |
12 | |
9 | |
7 |
User | Count |
---|---|
38 | |
32 | |
29 | |
12 | |
11 |