Why does this macro not appear in my macro list? I'm aware that if it has "parameters" it won't appear but I don't what parameters are. If this is the reason, what parts of my code are parameters? Thanks
Private Sub Button298_click()
Dim i As Integer
For i = 3 To 14
If Range(Cells(27, i), Cells(27, i)).Font.Color <> vbBlack Then
Cells(28, i).Value = 0
Else
Cells(28, i).Value = 1
End If
Cells(28, i).Font.Color = Cells(27, i).Font.Color
Next i
MsgBox "Update Complete"
End
End Sub
Private Sub Button298_click()
Dim i As Integer
For i = 3 To 14
If Range(Cells(27, i), Cells(27, i)).Font.Color <> vbBlack Then
Cells(28, i).Value = 0
Else
Cells(28, i).Value = 1
End If
Cells(28, i).Font.Color = Cells(27, i).Font.Color
Next i
MsgBox "Update Complete"
End
End Sub