Link to home
Start Free TrialLog in
Avatar of easycapital
easycapitalFlag for Macao

asked on

Bring the highest number in column A, where the value in Column B = "Project"

Thanks,
JP
ASKER CERTIFIED SOLUTION
Avatar of Saurabh Singh Teotia
Saurabh Singh Teotia
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of easycapital

ASKER

Excellent!
JP
I am wondering if the 9.2 rating is the highest rating in EE.
JP

Nah the highest rating i have got so far is 9.8 ... ;-)
Saurabh,

I missed that I need one more column in the calculation.  It works as the following:

Bring the highest number in column A, where the value in Column B = "Project", and column C "North"

Would it be:  
=Max(If(And(B1:B100="Project", C1:C100="North",A1:A100,""))  ?

Thanks,
JP
=Max(If(And(B1:B100="Project", C1:C100="North"),A1:A100,""))  ?  Missed a ")"

You can use this....

=MAX(IF(B1:B100="Project")*(C1:C100="North"),A1:A100,""))  

Saurabh...