Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 21
Default Using If function for Great and less than function

I want to use a IF fuction for greater than or less than
IF A1 is greater than 3000, but less than 4000, than I want C1 to be a "X"

how do i do this

Thanks
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 523
Default Using If function for Great and less than function


=if(AND(A13000,A1<4000),"X","")

"Muskrat24" wrote:

I want to use a IF fuction for greater than or less than
IF A1 is greater than 3000, but less than 4000, than I want C1 to be a "X"

how do i do this

Thanks

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15,768
Default Using If function for Great and less than function

Try this entered in C1:

=IF(AND(A13000,A1<4000),"X","")

--
Biff
Microsoft Excel MVP


"Muskrat24" wrote in message
...
I want to use a IF fuction for greater than or less than
IF A1 is greater than 3000, but less than 4000, than I want C1 to be a "X"

how do i do this

Thanks



  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,520
Default Using If function for Great and less than function

In C1
=IF(AND(A13000,A1<4000),"X","")

If this post helps click Yes
---------------
Jacob Skaria


"Muskrat24" wrote:

I want to use a IF fuction for greater than or less than
IF A1 is greater than 3000, but less than 4000, than I want C1 to be a "X"

how do i do this

Thanks

  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 21
Default Using If function for Great and less than function

I copied and pasted that equation in and it didnt work


"Jacob Skaria" wrote:

In C1
=IF(AND(A13000,A1<4000),"X","")

If this post helps click Yes
---------------
Jacob Skaria


"Muskrat24" wrote:

I want to use a IF fuction for greater than or less than
IF A1 is greater than 3000, but less than 4000, than I want C1 to be a "X"

how do i do this

Thanks



  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 21
Default Using If function for Great and less than function


This might give you a better picture of what I want

A1 = 3300

C1 I want a "X" if A1 is less than 2300
C2 I want a "X" if A1 is between 2300 and 3000
C3 I want a "X" if A1 is between 3000 and 4000

since A1 is 3300 , A "X" will show up in C2
"Jacob Skaria" wrote:

In C1
=IF(AND(A13000,A1<4000),"X","")

If this post helps click Yes
---------------
Jacob Skaria


"Muskrat24" wrote:

I want to use a IF fuction for greater than or less than
IF A1 is greater than 3000, but less than 4000, than I want C1 to be a "X"

how do i do this

Thanks

  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,520
Default Using If function for Great and less than function

C1 I want a "X" if A1 is less than 2300
In C1 = IF(AND(A10,A1<2300),"X","")

C2 I want a "X" if A1 is between 2300 and 3000

In C2 = IF(AND(A12300,A1<3000),"X","")

C3 I want a "X" if A1 is between 3000 and 4000

In C3 =IF(AND(A13000,A1<4000),"X","")



If this post helps click Yes
---------------
Jacob Skaria


"Muskrat24" wrote:


This might give you a better picture of what I want

A1 = 3300

C1 I want a "X" if A1 is less than 2300
C2 I want a "X" if A1 is between 2300 and 3000
C3 I want a "X" if A1 is between 3000 and 4000

since A1 is 3300 , A "X" will show up in C2
"Jacob Skaria" wrote:

In C1
=IF(AND(A13000,A1<4000),"X","")

If this post helps click Yes
---------------
Jacob Skaria


"Muskrat24" wrote:

I want to use a IF fuction for greater than or less than
IF A1 is greater than 3000, but less than 4000, than I want C1 to be a "X"

how do i do this

Thanks

  #8   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15,768
Default Using If function for Great and less than function

since A1 is 3300 , A "X" will show up in C2

C2? Don't you mean C3?

Also, you're overlooking the interval overlaps.

C1 I want a "X" if A1 is less than 2300
C2 I want a "X" if A1 is between 2300 and 3000
C3 I want a "X" if A1 is between 3000 and 4000


In the above, you're *excluding* 2300, 3000 and 4000. If A1 = 3000 then what
result do you want?

3000 is not less than 2300
3000 does not fall *between* 2300 and 3000
3000 does not fall *between* 3000 and 4000

Typically, when people say "between" what they really mean is = and <=.

Is that what you meant?

--
Biff
Microsoft Excel MVP


"Muskrat24" wrote in message
...

This might give you a better picture of what I want

A1 = 3300

C1 I want a "X" if A1 is less than 2300
C2 I want a "X" if A1 is between 2300 and 3000
C3 I want a "X" if A1 is between 3000 and 4000

since A1 is 3300 , A "X" will show up in C2
"Jacob Skaria" wrote:

In C1
=IF(AND(A13000,A1<4000),"X","")

If this post helps click Yes
---------------
Jacob Skaria


"Muskrat24" wrote:

I want to use a IF fuction for greater than or less than
IF A1 is greater than 3000, but less than 4000, than I want C1 to be a
"X"

how do i do this

Thanks



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
Excel Data Validation/Lookup function does function correcty Kirkey Excel Worksheet Functions 2 May 25th 09 09:22 PM
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


All times are GMT +1. The time now is 06:24 PM.

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

About Us

"It's about Microsoft Excel"