Okay, so I have this spreadsheet set up, I only want it to count if all four of the cells read true. so I have this set up. This continues on through G202. Here is my problem, whenever only G7,8,9, and 10 are true it is giving me a total of 2 instead of just 1. It does the same with G11,12,13,and 14. Why is it counting these as 2 instead of 1 as I indicated?
What is going on is I am checking the weather at different intervals of a flight so I have a true false system set up. I only want it to count that flight when all four intervals read true.
=SUM(IF(AND(G3=TRUE,G4=TRUE,G5=TRUE,G6=TRUE),1,0),(IF(AND(G7=TRUE,G8=TRUE,G9=TRUE,G10=TRUE),1,0)),(IF(AND(G11=TRUE,G12=TRUE,G13=TRUE,G14=TRUE),1,0)),(IF(AND(G7=TRUE,G8=TRUE,G9=TRUE,G10=TRUE),1,0)),(IF(AND(G11=TRUE,G12=TRUE,G13=TRUE,G14=TRUE),1,0)),(IF(AND(G15=TRUE,G16=TRUE,G17=TRUE,G18=TRUE),1,0)))
What is going on is I am checking the weather at different intervals of a flight so I have a true false system set up. I only want it to count that flight when all four intervals read true.
=SUM(IF(AND(G3=TRUE,G4=TRUE,G5=TRUE,G6=TRUE),1,0),(IF(AND(G7=TRUE,G8=TRUE,G9=TRUE,G10=TRUE),1,0)),(IF(AND(G11=TRUE,G12=TRUE,G13=TRUE,G14=TRUE),1,0)),(IF(AND(G7=TRUE,G8=TRUE,G9=TRUE,G10=TRUE),1,0)),(IF(AND(G11=TRUE,G12=TRUE,G13=TRUE,G14=TRUE),1,0)),(IF(AND(G15=TRUE,G16=TRUE,G17=TRUE,G18=TRUE),1,0)))