Maybe this
Code:Sub b() Dim LR As Long, i As Long LR = Range("B" & Rows.Count).End(xlUp).Row For i = 2 To LR If Range("B" & i).Value = 2 Then Range("C" & i).Formula = Range("C2").Formula Next i End Sub
Actually, I have one more thing before I can start filling my template....how can I copy a formula (ie. located in C2) and populate or paste that in column C where the number 2 is present in column B? I hope I explained it right. I will use this for another formula to apply to column B's number 1 entries....thanks!