Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi,
I need to find in a range if I have a certain value (100 and <200) I was trying =IF(AND(D3:H3100,D3:H3<200),"OK","Neg") but it give me the error: #value! How do I do this? Thanks -- Marcelo |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
maybe?
=IF(AND(sum(D3:H3)=100,sum(D3:H3)<200),"OK","Neg" ) -- Don Guillett Microsoft MVP Excel SalesAid Software "Marcelo" wrote in message ... Hi, I need to find in a range if I have a certain value (100 and <200) I was trying =IF(AND(D3:H3100,D3:H3<200),"OK","Neg") but it give me the error: #value! How do I do this? Thanks -- Marcelo |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=IF(SUM((D3:H3100)*(D3:H3<200)),"Neg","OK")
Use Ctrl+Shift+Enter after pasting in formula bar. On Nov 26, 3:19 pm, Marcelo wrote: Hi, I need to find in a range if I have a certain value (100 and <200) I was trying =IF(AND(D3:H3100,D3:H3<200),"OK","Neg") but it give me the error: #value! How do I do this? Thanks -- Marcelo |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Try this:
=IF(FREQUENCY(D3:H3,{199,100}),"OK","Neg") -- Biff Microsoft Excel MVP "Marcelo" wrote in message ... Hi, I need to find in a range if I have a certain value (100 and <200) I was trying =IF(AND(D3:H3100,D3:H3<200),"OK","Neg") but it give me the error: #value! How do I do this? Thanks -- Marcelo |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Referencing a named range based upon Range name entry in cell | Excel Worksheet Functions | |||
Excel Addin:Setting the range to the Excel.Range object range prop | Excel Worksheet Functions | |||
Selecting range in list of range names depending on a cell informa | Excel Discussion (Misc queries) | |||
formula to sort a range so that it matches the exact rows of a column that is outside that range? | Excel Discussion (Misc queries) | |||
How to count dates within a certain range in a column with mutiple date range entries | Excel Worksheet Functions |