Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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. -- MaryM |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=COUNTIF(Range,"=1000000")0
-- Regards, Peo Sjoblom "Mary" wrote in message ... 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. -- MaryM |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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 "Mary" wrote: 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. -- MaryM |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Mary wrote...
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 |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Worked great! Thank you.
-- MaryM "Mary" wrote: 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. -- MaryM |
#6
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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! -- MaryM "Peo Sjoblom" wrote: =COUNTIF(Range,"=1000000")0 -- Regards, Peo Sjoblom "Mary" wrote in message ... 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. -- MaryM |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
i REALLY need a VLOOKUP EXPERT | Excel Discussion (Misc queries) | |||
What is an expert? | Excel Discussion (Misc queries) | |||
Expert VLOOKUP | Excel Worksheet Functions | |||
A challenge for a real Excel Expert (Bob Phillips for instance) | Excel Discussion (Misc queries) | |||
Need Expert Advice | Excel Discussion (Misc queries) |