Fill Data - Row Based

Blessy Clara

Board Regular
Joined
Mar 28, 2010
Messages
201
Hi I have an excel sheet with two columns
ABC OrgAssist Prod-Pers Care/Safety
Disability Safety
Whole Family HealthInterpret/Translate
Assist Prod-Pers Care/Safety
Personal Mobility Equipment
Early Childhood Supports
Visability Ltd

<tbody>
</tbody>
Service1
Service2

<tbody>
</tbody>

Actually the Blank Rows in Org Column Must be filled as this - Coz the Services are given as separate Row, it actually belongs to the Org occurring first and the next org and its services ..and so on

ABC OrgAssist Prod-Pers Care/Safety
ABC OrgDisability Safety
Whole Family HealthInterpret/Translate
Whole Family HealthAssist Prod-Pers Care/Safety
Whole Family HealthPersonal Mobility Equipment
Whole Family HealthEarly Childhood Supports
Visability LtdService1
Visability LtdService2

<tbody>
</tbody>

Thank you
 

Excel Facts

Which Excel functions can ignore hidden rows?
The SUBTOTAL and AGGREGATE functions ignore hidden rows. AGGREGATE can also exclude error cells and more.
using Power Query aka Get&Transform

ORGServicesORGServices
ABC OrgAssist Prod-Pers Care/SafetyABC OrgAssist Prod-Pers Care/Safety
Disability SafetyABC OrgDisability Safety
Whole Family HealthInterpret/TranslateWhole Family HealthInterpret/Translate
Assist Prod-Pers Care/SafetyWhole Family HealthAssist Prod-Pers Care/Safety
Personal Mobility EquipmentWhole Family HealthPersonal Mobility Equipment
Early Childhood SupportsWhole Family HealthEarly Childhood Supports
Visability LtdService1Visability LtdService1
Service2Visability LtdService2

Code:
[SIZE=1]// Table1
let
    Source = Excel.CurrentWorkbook(){[Name="Table1"]}[Content],
    FilledDown = Table.FillDown(Source,{"ORG"})
in
    FilledDown[/SIZE]
 
Upvote 0
no, this is M-code not vba

Data tab - New Query - From Other Sources - Blank Query
it will open Power Query Editor
Advanced Editor - replace code there with code copied from the post then OK, Close&Load


be sure the name in the code is the same as your source table name (here: Table1)
 
Upvote 0
Hi
What about
Code:
Sub test()
    Dim a As Variant
        a = Cells(1, 1).Resize(Cells(Rows.Count, 2).End(xlUp).Row, 2)
    For i = 2 To UBound(a)
    If a(i, 1) = "" Then a(i, 1) = a(i - 1, 1)
     Next
     Cells(1, 1).Offset(1, 5).Resize(UBound(a), 2) = a
End Sub
 
Upvote 0
How about
Code:
Sub Blessy()
    With Range("A2:A", Range("B" & Rows.Count).End(xlUp).Row)
        .SpecialCells(xlBlanks).FormulaR1C1 = "r[-1]c"
        .Value = .Value
    End With
End Sub
 
Upvote 0
Hi Sandy66 Thank you - but i am unable to get Blank Query as mentioned (post following the steps) . However thanks for your time and response
 
Upvote 0

Forum statistics

Threads
1,214,591
Messages
6,120,432
Members
448,961
Latest member
nzskater

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