A challenge for an expert...

G

Guest

Data on a client's home mortgages are entered in each row in a section of the
spreadsheet. I want a lookup function that does this: if any of the
specified rows contains a value equal to or greater than 1000000 (1 million),
return "true" to the cell I'm in.
 
G

Guest

Here's another option:

=IF(MAX(A1:A100)>=1000000,"true","")

Replace the A1:A100 portion with whatever range your actual data is in.

HTH,
Elkar
 
H

Harlan Grove

Mary said:
Data on a client's home mortgages are entered in each row in a section of the
spreadsheet. I want a lookup function that does this: if any of the
specified rows contains a value equal to or greater than 1000000 (1 million),
return "true" to the cell I'm in.

=COUNTIF(ReferenceToYourRangeHere,">=1000000")>0
 
G

Guest

I used the max one, this didn't work at first, but I'm sure its my problem
with a quotation out of place or something. Thanks!
 

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