Hi, could anyone help me with this task please?
In words, I want something like this:
1. If each cell value ( all cells) in Range ("A10:A13, A15:A18, A20:A22, A24:A26") = False , then MsgBox ("check 1")
2. If at list one (or 2 or all) cells = true in Range ( “A24”:A26”), then Range(“F27”) = “ fail/ incorrect or some other text”
Else (otherwise)
Range(“F27”)= “average/ or other text”
I tried with next one ( below), but it did not work from the beginning =/ something is wrong…
Thanks in advance![]()
For Each Cel In Range("A10:A13,A15:A18,A20:A22,A24:A26") If Cel.Value = False Then MsgBox ("check 1") End Next
Bookmarks