Copy paste TITLE to empty cell, beside subordinate

xdenama

New Member
Joined
Feb 12, 2016
Messages
39
Office Version
  1. 365
I have a Group Title at top for every group. How to fill Group Title (red text) besides subordinate for every group as shown below.

Book1.xlsm
CDEFGHI
1
2ALPHALimeALPHALime
3OrangeALPHAOrange
4PapayaALPHAPapaya
5ManggoALPHAManggo
6CornALPHACorn
7BETABananaBETABanana
8CornBETACorn
9AppleBETAApple
10CHARLIEGrapeCHARLIEGrape
11OrangeCHARLIEOrange
12LemonCHARLIELemon
13StrawberyCHARLIEStrawbery
14CucumberCHARLIECucumber
Sheet1
 

Excel Facts

Formula for Yesterday
Name Manager, New Name. Yesterday =TODAY()-1. OK. Then, use =YESTERDAY in any cell. Tomorrow could be =TODAY()+1.
with Power Query
Column1Column2
ALPHALime
ALPHAOrange
ALPHAPapaya
ALPHAManggo
ALPHACorn
BETABanana
BETACorn
BETAApple
CHARLIEGrape
CHARLIEOrange
CHARLIELemon
CHARLIEStrawbery
CHARLIECucumber

Power Query:
let
    Source = Excel.CurrentWorkbook(){[Name="Table1"]}[Content],
    FillDown = Table.FillDown(Source,{"Column1"})
in
    FillDown
 
Upvote 0
with Power Query
Column1Column2
ALPHALime
ALPHAOrange
ALPHAPapaya
ALPHAManggo
ALPHACorn
BETABanana
BETACorn
BETAApple
CHARLIEGrape
CHARLIEOrange
CHARLIELemon
CHARLIEStrawbery
CHARLIECucumber

Power Query:
let
    Source = Excel.CurrentWorkbook(){[Name="Table1"]}[Content],
    FillDown = Table.FillDown(Source,{"Column1"})
in
    FillDown
Done, thank you again.
 
Upvote 0
with Power Query
Column1Column2
ALPHALime
ALPHAOrange
ALPHAPapaya
ALPHAManggo
ALPHACorn
BETABanana
BETACorn
BETAApple
CHARLIEGrape
CHARLIEOrange
CHARLIELemon
CHARLIEStrawbery
CHARLIECucumber

Power Query:
let
    Source = Excel.CurrentWorkbook(){[Name="Table1"]}[Content],
    FillDown = Table.FillDown(Source,{"Column1"})
in
    FillDown

On this process Power Query automatic create a "query" and a "Worksheet". How to specific naming the new sheet, like "data" instead of "Sheet147". Or load to specific worksheet that already exist.
 
Last edited:
Upvote 0
if your query is ready then select Close&Load to....
loadto.png

then you should see Queries and choose your place: sheet and cell where you want to load table
right click on your query/table
rightclick.png


then
selectplace.png


As you can see Load to has option to load query table into existing worksheet and specified cell

hth
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,035
Messages
6,122,791
Members
449,095
Latest member
m_smith_solihull

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