PC Review


Reply
Thread Tools Rate Thread

How do I use 'between' 95% and 100% for a nested IF function?

 
 
Mary S
Guest
Posts: n/a
 
      6th Apr 2010

I need an excel formula which claculates 'between' 95% and 100% i.e.

If( O2= between 95% and 100%, 1 x 2, 2 x 3)

I need nested IF functions,
 
Reply With Quote
 
 
 
 
Bob Phillips
Guest
Posts: n/a
 
      6th Apr 2010
Try

=IF(AND(Q2>=95%,Q2<=100%),2,6)

--

HTH

Bob

"Mary S" <Mary (E-Mail Removed)> wrote in message
news:11515387-1991-470B-99CC-(E-Mail Removed)...
>
> I need an excel formula which claculates 'between' 95% and 100% i.e.
>
> If( O2= between 95% and 100%, 1 x 2, 2 x 3)
>
> I need nested IF functions,



 
Reply With Quote
 
Mike H
Guest
Posts: n/a
 
      6th Apr 2010
Mary,

> I need nested IF functions,


You could but using AND is better. Note that 0.95 and 1 equate to 95% and 100%

=IF(AND(O2>=0.95,O2<=1),1*2,2*3)
--
Mike

When competing hypotheses are otherwise equal, adopt the hypothesis that
introduces the fewest assumptions while still sufficiently answering the
question.


"Mary S" wrote:

>
> I need an excel formula which claculates 'between' 95% and 100% i.e.
>
> If( O2= between 95% and 100%, 1 x 2, 2 x 3)
>
> I need nested IF functions,

 
Reply With Quote
 
Joe User
Guest
Posts: n/a
 
      6th Apr 2010
"Mary S" <Mary (E-Mail Removed)> wrote:
> I need nested IF functions


Not for this, you don't. Is there more to it?


> I need an excel formula which claculates 'between' 95% and 100% i.e.
> If( O2= between 95% and 100%, 1 x 2, 2 x 3)


Do you mean the strings "1x2" and "2x3", as in "one by two" and "two by
three"? Otherwise, why would you multiply 2 times 1?

And do you truly mean that O2 contains percentages? If so, are they truly
in the form 95% or 0.95, or are they in some other form (e.g. 95 or even
"95%")?

Making lots of assumptions, try:

=if(and(95%<=O2,O2<=100%), "1x2", "2x3")

 
Reply With Quote
 
Joe User
Guest
Posts: n/a
 
      6th Apr 2010
I wrote:
> "Mary S" <Mary (E-Mail Removed)> wrote:
>> I need nested IF functions

>
> Not for this, you don't. Is there more to it?


I meant to add.... If your class assignment requires nested IF functions,
then:

=if(O2>=95%, if(O2<=100%, "1x2", "2x3"), "2x3")

But you can see that in this case, that is not as tidy as using the AND
function, which might be the purpose of the "nested IF" assignment.


----- original message -----

"Joe User" <joeu2004> wrote in message
news:(E-Mail Removed)...
> "Mary S" <Mary (E-Mail Removed)> wrote:
>> I need nested IF functions

>
> Not for this, you don't. Is there more to it?
>
>
>> I need an excel formula which claculates 'between' 95% and 100% i.e.
>> If( O2= between 95% and 100%, 1 x 2, 2 x 3)

>
> Do you mean the strings "1x2" and "2x3", as in "one by two" and "two by
> three"? Otherwise, why would you multiply 2 times 1?
>
> And do you truly mean that O2 contains percentages? If so, are they truly
> in the form 95% or 0.95, or are they in some other form (e.g. 95 or even
> "95%")?
>
> Making lots of assumptions, try:
>
> =if(and(95%<=O2,O2<=100%), "1x2", "2x3")


 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
How do I do a TODAY() Function within a Nested IF AND Function Jennifer E Microsoft Excel Misc 1 11th Apr 2010 12:15 PM
can you nested sum and round function within if function? =?Utf-8?B?YW5uYQ==?= Microsoft Excel Worksheet Functions 4 27th May 2006 06:06 AM
Offset function with nested match function not finding host ss. =?Utf-8?B?TUt1bmVydA==?= Microsoft Excel Worksheet Functions 1 21st Mar 2006 10:46 PM
Nested IF Function, Date Comparing, and NetworkDays Function =?Utf-8?B?Y2FybA==?= Microsoft Excel Worksheet Functions 2 29th Dec 2004 09:57 PM
Re: INDEX function nested in SUM function Aladin Akyurek Microsoft Excel Worksheet Functions 0 9th Aug 2003 03:11 PM


Features
 

Advertising
 

Newsgroups
 


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