If but with a twist:(

A

AVB Over My Head

I have 6 columns each cell has a value either “Ok” or “Problem”. I
would like to figure out how to automate on column 7 if I have three
“Ok” in my row then type “OK” if I have less than 3 OK in my row then
type “Problem”
A1 B1 C1 D1 E1
F1 G1
1 Ok Ok Problem Problem Problem Problem Problem
2 Ok Problem Ok Ok Problem Ok
Ok
 
S

Steven Terry

i think it would be =if(countif(a6:F6,:"ok")>=,"ok","Problem")
This would make it greater or equal to three ok's.
 
J

JMB

Yep, I overlooked the >=. Thanks for the correction

=if(countif(a6:F6,:"ok")>=3,"ok","Problem")
 

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