Hello Bryce,

I've tried this on column E and F but it didnt work as there is text in these rows.
When i've added numbers in E and F it did work.

Hmmm Could you help?


Sub fillBlanks()
Dim i As Integer
Dim lastRow As Integer
Dim ws As Worksheet

Set ws = ActiveSheet
lastRow = ws.Range("e" & Rows.Count).End(xlUp).Row

For i = 1 To lastRow
If ws.Range("e" & i).Value = "" Then
ws.Range("e" & i).Value = ws.Range("f" & i).Value
End If
Next i
End Sub