Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi...
I am trying to use a IF function where in it should display "Max"if the value in the cell "D3" is less than 1000 ,2nd Condition- if the value in a cell "D3"is greator than 1000 it should display"max7" ,3rd Condition if the value is greator than 11000 then it should display"Max8". I am trying to do it with IF function but alphabets are not accepected & the cell is showing a "VALUE#" error. Please help |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=IF(D3<1000,"Max",IF(D311000,"Max8","Max7"))
What should display if D3 = 1000 ? "Ridhi" wrote: Hi... I am trying to use a IF function where in it should display "Max"if the value in the cell "D3" is less than 1000 ,2nd Condition- if the value in a cell "D3"is greator than 1000 it should display"max7" ,3rd Condition if the value is greator than 11000 then it should display"Max8". I am trying to do it with IF function but alphabets are not accepected & the cell is showing a "VALUE#" error. Please help |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
The formula i used is
=if(D3<=1000,"Max")+IFAnd(D31000,D3<11000),"Max7" )+IF(D311000,"Max8") But using this the cell is showing "Value#"Error. Thanks "Dennis" wrote: =IF(D3<1000,"Max",IF(D311000,"Max8","Max7")) What should display if D3 = 1000 ? "Ridhi" wrote: Hi... I am trying to use a IF function where in it should display "Max"if the value in the cell "D3" is less than 1000 ,2nd Condition- if the value in a cell "D3"is greator than 1000 it should display"max7" ,3rd Condition if the value is greator than 11000 then it should display"Max8". I am trying to do it with IF function but alphabets are not accepected & the cell is showing a "VALUE#" error. Please help |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
On Tue, 3 Jun 2008 04:09:01 -0700, Ridhi
wrote: The formula i used is =if(D3<=1000,"Max")+IFAnd(D31000,D3<11000),"Max7 ")+IF(D311000,"Max8") But using this the cell is showing "Value#"Error. Thanks What made you think you could add IF statements that return text? "+" is an arithmetic operator. If you want to concatenate, you use the "&" operator, but you won't get the result you expect. =IF(D3<=1000,"Max",IF(AND(D31000,D3<11000),"Max7" ,IF(D311000,"Max8"))) Also, Excel evaluates left to right, so your AND is superfluous: =IF(D3<=1000,"Max",IF(D3<11000,"Max7",IF(D311000, "Max8"))) --ron |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
copy of excel file not showing formulal/function in the function b | Excel Discussion (Misc queries) | |||
LINKEDRANGE function - a complement to the PULL function (for getting values from a closed workbook) | Excel Worksheet Functions | |||
Offset function with nested match function not finding host ss. | Excel Worksheet Functions | |||
Emulate Index/Match combo function w/ VBA custom function | Excel Worksheet Functions | |||
Nested IF Function, Date Comparing, and NetworkDays Function | Excel Worksheet Functions |