Merging resulting to an empty cells

ExcelNewbie2020

Active Member
Joined
Dec 3, 2020
Messages
333
Office Version
  1. 365
Platform
  1. Windows
i have sheet 1, sheet 2 and merge..

i need to merge the data of sheet 1 and sheet 2 in which sheet 1 will be the main sheet and sheet 2 data will be inserted from sheet 1. the reference cell will be the names..
as you can see there are multiple names from sheet 2. how can we merge that will add an empty cell?.. thank you


 

Excel Facts

What did Pito Salas invent?
Pito Salas, working for Lotus, popularized what would become to be pivot tables. It was released as Lotus Improv in 1989.
Using Power Query

Power Query:
let
    T1 = Excel.CurrentWorkbook(){[Name="Table1"]}[Content],
    ChangeType = Table.TransformColumnTypes(T1,{{"date", type date}, {"amount", type number}}),
    T2= Excel.CurrentWorkbook(){[Name="Table2"]}[Content],
    MQ = Table.NestedJoin(ChangeType, {"name"}, T2, {"NAME"}, "Table2", JoinKind.FullOuter),
    ET = Table.ExpandTableColumn(MQ, "Table2", {"QTY"}, {"QTY"}),
    #"Grouped Rows" = Table.Group(ET, {"name"}, {{"Data", each _, type table [name=text, date=nullable date, amount=nullable number, QTY=nullable number]}}),
    #"Added Custom" = Table.AddColumn(#"Grouped Rows", "Custom", each Table.AddIndexColumn([Data],"Index",1,1)),
    #"Removed Other Columns" = Table.SelectColumns(#"Added Custom",{"Custom"}),
    #"Expanded Custom" = Table.ExpandTableColumn(#"Removed Other Columns", "Custom", {"name", "date", "amount", "QTY", "Index"}, {"name", "date", "amount", "QTY", "Index"}),
    #"Added Custom1" = Table.AddColumn(#"Expanded Custom", "Names", each if [Index] = 1 then [name] else null),
    #"Added Custom2" = Table.AddColumn(#"Added Custom1", "Dates", each if [Index] = 1 then [date] else null),
    #"Added Custom3" = Table.AddColumn(#"Added Custom2", "Amount", each if [Index] = 1 then [amount] else null),
    #"Removed Other Columns1" = Table.SelectColumns(#"Added Custom3",{"Names", "Dates", "Amount", "QTY"})
in
    #"Removed Other Columns1"
 
Upvote 0

Forum statistics

Threads
1,223,247
Messages
6,171,007
Members
452,374
Latest member
keccles

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