Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 22
Default Using IF Function

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   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 202
Default Using IF Function

=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   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 22
Default Using IF Function

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   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 5,651
Default Using IF Function

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
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
copy of excel file not showing formulal/function in the function b oaallam Excel Discussion (Misc queries) 4 September 6th 07 01:20 PM
LINKEDRANGE function - a complement to the PULL function (for getting values from a closed workbook) [email protected] Excel Worksheet Functions 0 September 5th 06 03:44 PM
Offset function with nested match function not finding host ss. MKunert Excel Worksheet Functions 1 March 21st 06 10:46 PM
Emulate Index/Match combo function w/ VBA custom function Spencer Hutton Excel Worksheet Functions 2 May 2nd 05 05:26 PM
Nested IF Function, Date Comparing, and NetworkDays Function carl Excel Worksheet Functions 2 December 29th 04 09:57 PM


All times are GMT +1. The time now is 09:35 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"