I am currently trying to make two buttons to change font color into black or white, based on the cell color being white (blank).
Somehow it does not seem to work at all
Sub colorchange()
Dim Cell As Range
For Each Cell In Range("AP74:AX80")
If Cell.Interior.Color = RGB(0, 0, 0) Then
Cell.Font.Color = RGB(0, 0, 0)
End If
Next Cell
End Sub