Had something come up today when working on solution for someone on a Facebook post. They had test questions, (n is the row number) if all questions were answered Column Hn would turn True (from blank) and if no questions were skipped column Jn would turn true (from Blank) -- i don't know why they didn't have False, but its not my worksheet. They wanted the row to be conditional formatted if BOTH Hn & Jn were TRUE. So it looks like you need the AND function, but what I found out is =AND($H2,$J2) in conditional formatting didn't work
Seems =AND(Blank,Blank) --> #Value, =AND(True,0) --> TRUE, =AND(0,True)--> True... Seemed odd that 0 & True are TRUE (=AND(--$H2,--$J2) worked cause its (0,0) or (1,1) )
Some InSite as to why 0 & True = TRUE?????
Seems =AND(Blank,Blank) --> #Value, =AND(True,0) --> TRUE, =AND(0,True)--> True... Seemed odd that 0 & True are TRUE (=AND(--$H2,--$J2) worked cause its (0,0) or (1,1) )
Some InSite as to why 0 & True = TRUE?????