Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreWe've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now
I have a column called date in one table :
2021-01-01
2021-01-02
2021-01-03
2021-01-04
etc
And another column called Items in another table
Item A
Item B
Item C
Item D
etc
I would like to create a new table with looks like this
| Date | Item |
| 2021-01-01 | A |
| 2021-01-01 | B |
| 2021-01-01 | C |
| 2021-01-01 | D |
| 2021-01-02 | A |
| 2021-01-02 | B |
| 2021-01-02 | C |
| 2021-01-02 | D |
| etc |
What's the best way of doing this?
Solved! Go to Solution.
@vipett
TABLE = CROSSJOIN(Table1, Table2)
In case it answered your question please mark this as a solution for community visibility. Appreciate Your Kudos 🙂
@vipett
TABLE = CROSSJOIN(Table1, Table2)
In case it answered your question please mark this as a solution for community visibility. Appreciate Your Kudos 🙂
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 55 | |
| 34 | |
| 31 | |
| 19 | |
| 17 |
| User | Count |
|---|---|
| 74 | |
| 71 | |
| 38 | |
| 35 | |
| 25 |