Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
I have a table looking like this (coming from excel) :
| Country | Region |
| France | Europe |
| Germany | Europe |
| Japan | Asia |
| Canada | America |
I want to dublicate each row of the table so I get something like this :
| Country | Region | Brand |
| France | Europe | A |
| Germany | Europe | A |
| Japan | Asia | A |
| Canada | America | A |
| France | Europe | B |
| Germany | Europe | B |
| Japan | Asia | B |
| Canada | America | B |
| France | Europe | C |
| Germany | Europe | C |
| Japan | Asia | C |
| Canada | America | C |
Is there a way to do that ?
Solved! Go to Solution.
@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/
@Arkhos94 - Create one table for Brand with the help of "Enter Data" option and create structure like this:
Then Create a new table with below DAX:
New Table = CROSSJOIN(CountryTable, Brand)
thank you both for the help
@Arkhos94 - Create one table for Brand with the help of "Enter Data" option and create structure like this:
Then Create a new table with below DAX:
New Table = CROSSJOIN(CountryTable, Brand)
@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/
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.