Hi folks,
I have a tricky question hopefully one of you can help answer. I would like to automate the following scenario.
I have a list of records that each has a unique identifier (equipment #). Some records are noted "Superior" and the rest are considered "sub".
For the "sub" equipment I want to populate the equipment # from the superior equipment.
Is there a way to do this programatically? An example file is attached.
Thanks in advance!!
Last edited by heidelberger75; 11-18-2011 at 08:02 AM.
Sub snb() With Sheets(1).Cells(1).CurrentRegion.Columns(1) .AutoFilter 1, "sub" For Each ar In .Offset(1).SpecialCells(12).Areas ar.Offset(, 2) = ar.Cells(1).Offset(-1, 1).Value Next .AutoFilter End With End Sub
Fantastic! Thank you!!!!!
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks