Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 9
Default IF with AND function??

I want to evaluate a value between two limits. In other words, a greater
than and less than, using an IF function.

I wrote the equation:
=IF(0<(fp)<100,(12/42)*qi,(6/42)*qi)
for the conditions of fp greater than 0 and less than 100, but regardless of
what value I use for fp, it returns the second (false) result.

Obviously I have written the equation incorrectly. How should it have been
written?

Thanks in advance!
--
PROINWV
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15,768
Default IF with AND function??

Try it like this:

=IF(AND(fp0,fp<100),12/42*qi,6/42*qi)

Note that 0 and 100 are excluded. If you meant that the boundaries are to be
included:

=IF(AND(fp=0,fp<=100),12/42*qi,6/42*qi)


--
Biff
Microsoft Excel MVP


"proinwv" wrote in message
...
I want to evaluate a value between two limits. In other words, a greater
than and less than, using an IF function.

I wrote the equation:
=IF(0<(fp)<100,(12/42)*qi,(6/42)*qi)
for the conditions of fp greater than 0 and less than 100, but regardless
of
what value I use for fp, it returns the second (false) result.

Obviously I have written the equation incorrectly. How should it have been
written?

Thanks in advance!
--
PROINWV



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 9
Default IF with AND function??


Thanks very much. That solves my problem.

Also, thanks for the fast reply.



  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15,768
Default IF with AND function??

You're welcome. Thanks for the feedback!

--
Biff
Microsoft Excel MVP


"proinwv" wrote in message
...

Thanks very much. That solves my problem.

Also, thanks for the fast reply.





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 02:38 AM.

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"