Check out our brand new Local Poker Communities! Get updates and interact with poker players in your area.
Visit the United States Poker Community | Visit the California Poker Community | Read more about the Launch of P5s Local
  1. I need a formula that tells me how many times two seperate columns in the same row = false

    I.E. In this situation the answer would be 4 because false shows up in the same row in two seperate columns

    <TABLE cellSpacing=0 cellPadding=0 width=284 border=0 x:str><COLGROUP> <COL width=94> <COL width=66> <COL width=65> <COL width=59> <TBODY><TR height=17><TD align=right width=94 height=17 x:num>200128577</TD><TD align=right width=66 x:num>5408</TD><TD align=middle width=65 x:bool="TRUE">TRUE</TD><TD align=middle width=59 x:bool="FALSE">FALSE</TD></TR><TR height=17><TD align=right height=17 x:num>140085598</TD><TD align=right x:num>5408</TD><TD align=middle x:bool="FALSE">FALSE</TD><TD align=middle x:bool="FALSE">FALSE</TD></TR><TR height=17><TD align=right height=17 x:num>140085598</TD><TD align=right x:num>5408</TD><TD align=middle x:bool="FALSE">FALSE</TD><TD align=middle x:bool="FALSE">FALSE</TD></TR><TR height=17><TD align=right height=17 x:num>140085598</TD><TD align=right x:num>5408</TD><TD align=middle x:bool="FALSE">FALSE</TD><TD align=middle x:bool="FALSE">FALSE</TD></TR><TR height=17><TD align=right height=17 x:num>221433063</TD><TD align=right x:num>5408</TD><TD align=middle x:bool="FALSE">FALSE</TD><TD align=middle x:bool="FALSE">FALSE</TD></TR></TBODY></TABLE>

    Thanks for your help all
  2. Start column E.

    In cell E1 - @if(c1=d1,1,0)
    In cell E2 - @if(c2=d2,1,0)
    etc.

    Total up column E.

    Crude, but effective.
  3. Thanks for the idea Cruzr!

    Thats very close to what I am looking for but I'm looking for something a little smoother then that.

    Any other ideas?
    Thread Starter
  4. That doesn't work, because it will return a "1" when both conditions are true.

    I would suggest using the AND function.

    So, in Cell E1: =AND(C1="FALSE", D1="FALSE")

    This will return "TRUE" if the values in both C1 and D1 are false. (The AND function returns the word true when both conditions are met.)

    Lastly, you can do a Countif in some other cell to count the number of "TRUE"s in column E.
  5. HA! You're right Mike - hadn't considered that.

Similar Threads