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.
You are very well come
Thank you for the feedback
Be happy
 
Upvote 0
There were a couple of typo's in the code
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

Forum statistics

Threads
1,215,045
Messages
6,122,840
Members
449,096
Latest member
Erald

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