Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now
I have the following data with me already.
Table 1 Consists of Column A , Column B , Column C
Table 2 Consists of Column D , Column E
Now i want to create a new table as
Table 3 Consists of Column A , Column D.
Note: Column A is of data type Text and Column D is of Data type Decimal Number.
Any help, suggestion on this will be of great help
Solved! Go to Solution.
Hi @Anonymous ,
At first, you need to add an index column( start from 0 ) in the first table.
Then add a custom column like the following codes:
=Table.AddColumn(#"Added Index", "Column4", each TableB{[Index]}[Column4])
Hi @Anonymous ,
At first, you need to add an index column( start from 0 ) in the first table.
Then add a custom column like the following codes:
=Table.AddColumn(#"Added Index", "Column4", each TableB{[Index]}[Column4])
Do you have any IDs in your tables that should be used to match rows between tables? If yes, then merge the tables https://support.microsoft.com/en-us/office/merge-queries-power-query-fd157620-5470-4c0f-b132-7ca2616...
Or do you have two tables with no IDs but with the same number of rows in each table and want to merge them as is (row 1 with row 1, row 10 with row 10, last row with last row)? Add Index column to both tables https://support.microsoft.com/en-us/office/insert-a-custom-column-into-a-table-power-query-2dbb579a-... and then merge two tables by index columns.
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 |
|---|---|
| 5 | |
| 4 | |
| 3 | |
| 3 | |
| 2 |
| User | Count |
|---|---|
| 8 | |
| 6 | |
| 6 | |
| 6 | |
| 5 |