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
Hi
i have a table like this
And a list of country :
How can i duplicate data for France, Japan, China to have the same data as Germany & USA ( 2 processes ordering & receiving with the same time value )?
thank you
Solved! Go to Solution.
Considering that your Year/PR/Process/Time is consistent for every country. Now you can do following
- Remove country from the main data table
- Remove Duplicate Rows
- Add CountryList Table as your custom Column
Expand the column that will give you Values.
Regards
Proud to be a Super User!
Hi @ktt777
Based on your sample data,
firstly, create a table containing Process & Time
TableTest1 = SUMMARIZE(Table1,Table1[Process],Table1[Time])
then, build the combination table
Table = CROSSJOIN(Table2,TableTest1)
result
Best Regards,
Community Support Team _Tang
If this post helps, please consider Accept it as the solution to help the other members find it more quickly.
Hi @ktt777
Based on your sample data,
firstly, create a table containing Process & Time
TableTest1 = SUMMARIZE(Table1,Table1[Process],Table1[Time])
then, build the combination table
Table = CROSSJOIN(Table2,TableTest1)
result
Best Regards,
Community Support Team _Tang
If this post helps, please consider Accept it as the solution to help the other members find it more quickly.
Considering that your Year/PR/Process/Time is consistent for every country. Now you can do following
- Remove country from the main data table
- Remove Duplicate Rows
- Add CountryList Table as your custom Column
Expand the column that will give you Values.
Regards
Proud to be a Super User!
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 |
|---|---|
| 53 | |
| 35 | |
| 31 | |
| 19 | |
| 17 |
| User | Count |
|---|---|
| 75 | |
| 72 | |
| 38 | |
| 35 | |
| 25 |