Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
isred = 123 ' What ever color red is
if IsRed = Cells(x, y).Interior.Color then
'make next cell equal 1
Cells(x, y +1).value = 1
end if
Sub see_red()
For Each cll In Selection
If cll.Font.ColorIndex = 3 Then
cll.Offset(0, 1) = 1
End If
Next cll
End Sub