Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
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/
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the February 2025 Power BI update to learn about new features.
User | Count |
---|---|
87 | |
81 | |
53 | |
38 | |
35 |