I figured it out myself 
here is the below code that worked.
Sub Cols1()
Dim lc As Long
lc = Cells(1, Columns.Count).End(xlToLeft).Column
Dim i, j As Long
Dim rng As Range
For j = Range("D" & Rows.Count).End(3)(1).Row To 4 Step -1
For i = 1 To lc
If Cells(4, i) = "Proposal#" And Cells(j, i) Like "1.*" Or Cells(j, i) Like "1" Then
Cells(4, i) = "First Proposal#"
Set rng = Range(Cells(4, i).Address).Offset(0, 2)
MsgBox Cells(j, i).Value
'MsgBox rng
rng.Value = "First Vote Cast"
'MsgBox Range(Cells(4, i).Address).Offset(0, 2)
'If Cells(4, i) = "Vote Cast" And Cells(5, 1) Like "1*" Then
'Cells(4, i) = "First Vote Cast"
End If
Next i
Next j
End Sub
Bookmarks