View Single Post
 
Old 02-28-2016, 05:59 PM
skywriter skywriter is offline Windows 7 32bit Office 2010 32bit
Novice
 
Join Date: Apr 2015
Posts: 5
skywriter is on a distinguished road
Default

Try this on your example sheet.
Code:
Sub FillIn()
Dim ws As Worksheet, lr As Long, rngData As Range, r As Range
Set ws = Worksheets("DetailedTBFY15")
Application.ScreenUpdating = False
    With ws
        lr = .Cells(Rows.Count, "B").End(xlUp).row
        Set rngData = .Range("B5:B" & lr)
    End With
    With rngData.SpecialCells(4)
            For Each r In .Areas
                r.Value = r(0).Value
            Next r
    End With
Application.ScreenUpdating = True
End Sub
Reply With Quote