Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

Reply
Arkhos94
Helper IV
Helper IV

Duplicating each row of a table

I have a table looking like this (coming from excel) :

CountryRegion
FranceEurope
GermanyEurope
JapanAsia
CanadaAmerica

 

I want to dublicate each row of the table so I get something like this :

CountryRegionBrand
FranceEuropeA
GermanyEuropeA
JapanAsiaA
CanadaAmericaA
FranceEuropeB
GermanyEuropeB
JapanAsiaB
CanadaAmericaB
FranceEuropeC
GermanyEuropeC
JapanAsiaC
CanadaAmericaC

 

Is there a way to do that ?

2 ACCEPTED SOLUTIONS
amitchandak
Super User
Super User

@Arkhos94 , Assume you have table that have brand (A,b,C)

 

you can create a new table

crossjoin(Table1, brand)

 

 

also check

https://www.sqlbi.com/articles/from-sql-to-dax-joining-tables/

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

View solution in original post

Tahreem24
Super User
Super User

@Arkhos94  - Create one table for Brand with the help of "Enter Data" option and create structure like this:

Capture.PNG

 

Then Create a new table with below DAX:

New Table = CROSSJOIN(CountryTable, Brand)

 

1.PNG

 

Don't forget to give thumbs up and accept this as a solution if it helped you!!!

Please take a quick glance at newly created dashboards : Restaurant Management Dashboard , HR Analytics Report , Hotel Management Report, Sales Analysis Report , Fortune 500 Companies Analysis , Revenue Tracking Dashboard

View solution in original post

3 REPLIES 3
Arkhos94
Helper IV
Helper IV

thank you both for the help

Tahreem24
Super User
Super User

@Arkhos94  - Create one table for Brand with the help of "Enter Data" option and create structure like this:

Capture.PNG

 

Then Create a new table with below DAX:

New Table = CROSSJOIN(CountryTable, Brand)

 

1.PNG

 

Don't forget to give thumbs up and accept this as a solution if it helped you!!!

Please take a quick glance at newly created dashboards : Restaurant Management Dashboard , HR Analytics Report , Hotel Management Report, Sales Analysis Report , Fortune 500 Companies Analysis , Revenue Tracking Dashboard
amitchandak
Super User
Super User

@Arkhos94 , Assume you have table that have brand (A,b,C)

 

you can create a new table

crossjoin(Table1, brand)

 

 

also check

https://www.sqlbi.com/articles/from-sql-to-dax-joining-tables/

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors