The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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
User | Count |
---|---|
28 | |
12 | |
8 | |
7 | |
5 |
User | Count |
---|---|
35 | |
14 | |
12 | |
9 | |
7 |