How to insert a row in excel without formula?

Amuserad

New Member
Joined
Sep 25, 2020
Messages
3
Office Version
  1. 365
  2. 2013
  3. 2010
Platform
  1. Windows
I have an example.

There are two sheets in an excel, Sheet 1 and Sheet 2

Sheet 1 has
Data 1
50​
Data 2
90​

Sheet 2 has
Data 1Data 1.5
10​
Here in Sheet 2, Data 1.5 is the subset within Data 1

I would like to insert this Data 1.5 below Data 1 in Sheet1, without manual intervention and without a macro code, just by using formula.

Expected outcome under Sheet 1 is

Data 1
50​
Data 1.5
10​
Data 2
90​
 

Excel Facts

Why does 9 mean SUM in SUBTOTAL?
It is because Sum is the 9th alphabetically in Average, Count, CountA, Max, Min, Product, StDev.S, StDev.P, Sum, VAR.S, VAR.P.
maybe (with your example)
Power Query:
let
    Source1 = Excel.CurrentWorkbook(){[Name="Table1"]}[Content],
    Source2 = Excel.CurrentWorkbook(){[Name="Table2"]}[Content],
    RC = Table.RemoveColumns(Source2,{"Column1"}),
    Ren = Table.RenameColumns(RC,{{"Column2", "Column1"}, {"Column3", "Column2"}}),
    TC = Table.Combine({Source1, Ren}),
    Sort = Table.Sort(TC,{{"Column1", Order.Ascending}})
in
    Sort
Column1Column2Column1Column2Column3Column1Column2
Data 150Data 1Data 1.510Data 150
Data 290Data 1.510
Data 290
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,918
Messages
6,122,241
Members
449,075
Latest member
staticfluids

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