complicated multi column formula help

P

Pat

This is what my data is:
B= BLIND SCORE TOTALS
GM1 GM2 GM3 GM4 GM1 GM2 GM3 GM4 SERIES BOWLED # OF GAMES
D E F G H I J K M
O
B B 0 0 100 100 150 150 300
2

D THRU G WILL EITHER = "B" OR "0"
H THRU K WILL EITHER = 0 OR >0
I NEED "M" TO ONLY TOTAL VALUE OF "H" THRU "K" ONLY WHEN "D" THRU "G" = 0
I NEED "O" TO ONLY BE +1 EACH TIME "H" THRU "K" >0 & "D" THRU "G" = 0

I know what I want but, not even sure if I am explaining it correctly.
PLEASE HELP ME.
Thanks,
Pat
 
K

Ken Hudson

Hi Pat,
Try these formulas:

In M1: =SUM(IF(D1=0, H1,0)+IF(E1=0, I1,0)+IF(F1=0, J1,0)+IF(G1=0, K1,0))

In O1: =SUM(IF(AND(D1=0, H1>0),1,0)+IF(AND(E1=0, I1>0),1,0)+IF(AND(F1=0,
J1>0),1,0)+IF(AND(G1=0, K1>0),1,0))
 
T

T. Valko

For Series Bowled:

=SUMIF(D2:G2,0,H2:K2)

For # of Games:

=SUMPRODUCT(--(ISNUMBER(D2:G2)),--(D2:G2=0),--(H2:K2>0))

Biff
 
P

Pat

Ken,
Thanks so much, I spent 7 hours trying to figure this out by myself and
within 45 min you had solved this. "THANKS" - Pat.
 
P

Pat

Ken,
I spent 7 hours trying to get this and you had it in less than 45 min after
I sent my question. It works great. THANKS - Pat
 
P

Pat

"T. Valko" - Thanks to you also, I tried your formula's also, and they work
also, As I told Ken , I spent Hours trying to figure this out for my self.
THANKS - Pat
 
T

T. Valko

You're welcome. Thanks for the feedback!

Biff

Pat said:
"T. Valko" - Thanks to you also, I tried your formula's also, and they
work
also, As I told Ken , I spent Hours trying to figure this out for my
self.
THANKS - Pat
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top