Pq merge

sadath

Active Member
Joined
Oct 10, 2004
Messages
262
Office Version
  1. 365
Platform
  1. Windows
Hi,
Assume I have two table to merge in power qurty

SL Value
1 350
2 6545
4 64
6 654
7 464

SL Value
2 170
3 64
5 46
8 64

I tried FullOuter(All rows from both) result is
SL Value Sum of Value
1 350
2 6545 170
4 64
6 654
7 464
174

I need
SL Value Value1
1 350
2 6545 170
3 64
4 64
5 46
6 654
7 464
8 64

which merge should i use?
 

Excel Facts

Easy bullets in Excel
If you have a numeric keypad, press Alt+7 on numeric keypad to type a bullet in Excel.
try something like this:

Code:
let
    Table1 = Excel.CurrentWorkbook(){[Name="Table1"]}[Content],
    Table2 = Excel.CurrentWorkbook(){[Name="Table2"]}[Content],


    CombineTables = Table.Combine({Table1,Table2}),


    Grp = Table.Group(
                        CombineTables,
                        {"SL"},
                        {{"Values", each Text.Combine(List.Transform(_[Value], Text.From), ","), type text}},
                        GroupKind.Global
                    ),


    SplitColumnbyDelimiter = Table.SplitColumn( Grp, 
                                                "Values", 
                                                Splitter.SplitTextByDelimiter(","), 
                                                {"Values1", "Values2"}
                                             )
in
    SplitColumnbyDelimiter
 
Upvote 0

Forum statistics

Threads
1,213,534
Messages
6,114,186
Members
448,554
Latest member
Gleisner2

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top