Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! 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 🙂
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 53 | |
| 48 | |
| 31 | |
| 16 | |
| 14 |
| User | Count |
|---|---|
| 86 | |
| 71 | |
| 38 | |
| 28 | |
| 25 |