two quick questions on excel. please answer as soon as possible...

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

question 1
can you use the MAX function to check more than one condition?

question 2
when entering a formula by selecting cell references, do you only need to
type the operators and the initial "="?
 
Here is an example that tests column A for the value a, and gets the MAX
value in B that is less than 10

=MAX(IF(A1:A10="a",IF(B1:B10<10,B1:B10)))

it is an array formula, so commit with Ctrl-Shift-Enter,

--

HTH

RP
(remove nothere from the email address if mailing direct)
 
Hi
1. Not really sure what you're trying to achieve. Do you mean an array
formula such as
=MAX(IF(A1:A100="value1")*(B1:B100="value2"),C1:C100))

2. Yes
 
thanks for answering the second question
question 1 was a test question that was given by one of my teachers.
to make the question simple and try to make you guys understand better let
me give you the question word for word
TRUE OR FALSE
YOU CAN USE THE MAX FUNCTION TO CHECK MORE THAN ONE CONDITION
 
I would say the answer to the question is False, but to me it's poorly
worded.
 
=IF(MAX(A1:A10)<10,"true","false")

Technically, this would test the condition of all 10 cells. You could also
use MAX() in place of OR() and receive the same result, though I don't know
why you would want to.

It is a strange, useless, badly worded question, as far as I can see.

Tim C
 
Hi

question doesn't make sense - MAX returns the maximum value of a range or up
to 30 different ranges - there are no conditions in play, unless it is
nested with an IF statement.
---
(from help)
MAX(number1,number2,...) - Number1, number2, ... are 1 to 30 numbers
for which you want to find the maximum value.

---

if the question was
You can use the MAX function to check more than one RANGE - answer = TRUE
as it is currently worded i would go for FALSE as checking Conditions is not
the purpose of a MAX function.

Good luck!

Cheers
JulieD
 

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

Back
Top