PC Review


Reply
Thread Tools Rate Thread

conditional formula in Excel

 
 
=?Utf-8?B?bXJlZWR0aWdlcnM=?=
Guest
Posts: n/a
 
      6th Jul 2007
Hey,

Please help. I'm trying to write a formula for the following:

If A <= 0.35, then "Level I" or if A > 0.35 and <= 0.70, then "Level II" or
if A > 0.70, then "Level III".

Can somebody help me with this?
 
Reply With Quote
 
 
 
 
Pete_UK
Guest
Posts: n/a
 
      6th Jul 2007
Assuming your number is in A1, then try this out in B1:

=IF(A1<=0.35,"Level I",IF(A1<=0.7,"Level II","Level III")

Hope this helps.

Pete

On Jul 6, 9:36 pm, mreedtigers <mreedtig...@discussions.microsoft.com>
wrote:
> Hey,
>
> Please help. I'm trying to write a formula for the following:
>
> If A <= 0.35, then "Level I" or if A > 0.35 and <= 0.70, then "Level II" or
> if A > 0.70, then "Level III".
>
> Can somebody help me with this?



 
Reply With Quote
 
Trevor Shuttleworth
Guest
Posts: n/a
 
      6th Jul 2007
=IF(A5<=0.35,"Level 1",IF(A5<=0.7,"Level 2","Level3"))

Regards

Trevor


"mreedtigers" <(E-Mail Removed)> wrote in message
newsE9DC061-6699-47ED-9E50-(E-Mail Removed)...
> Hey,
>
> Please help. I'm trying to write a formula for the following:
>
> If A <= 0.35, then "Level I" or if A > 0.35 and <= 0.70, then "Level II"
> or
> if A > 0.70, then "Level III".
>
> Can somebody help me with this?



 
Reply With Quote
 
T. Valko
Guest
Posts: n/a
 
      6th Jul 2007
Try one of these:

=IF(A1<=0.35,"L1",IF(A1<=0.7,"L2","L3"))

The robust version:

=IF(ISNUMBER(A1),IF(A1<=0.35,"L1",IF(A1<=0.7,"L2","L3")),"")

--
Biff
Microsoft Excel MVP


"mreedtigers" <(E-Mail Removed)> wrote in message
newsE9DC061-6699-47ED-9E50-(E-Mail Removed)...
> Hey,
>
> Please help. I'm trying to write a formula for the following:
>
> If A <= 0.35, then "Level I" or if A > 0.35 and <= 0.70, then "Level II"
> or
> if A > 0.70, then "Level III".
>
> Can somebody help me with this?



 
Reply With Quote
 
=?Utf-8?B?bXJlZWR0aWdlcnM=?=
Guest
Posts: n/a
 
      6th Jul 2007
Thanks for the quick help, that was much easier than I thought it would be.

"Pete_UK" wrote:

> Assuming your number is in A1, then try this out in B1:
>
> =IF(A1<=0.35,"Level I",IF(A1<=0.7,"Level II","Level III")
>
> Hope this helps.
>
> Pete
>
> On Jul 6, 9:36 pm, mreedtigers <mreedtig...@discussions.microsoft.com>
> wrote:
> > Hey,
> >
> > Please help. I'm trying to write a formula for the following:
> >
> > If A <= 0.35, then "Level I" or if A > 0.35 and <= 0.70, then "Level II" or
> > if A > 0.70, then "Level III".
> >
> > Can somebody help me with this?

>
>
>

 
Reply With Quote
 
Pete_UK
Guest
Posts: n/a
 
      6th Jul 2007
Yes, the logic is that by the time you get to the second IF you have
already tested for A1 being <=0.35, so you don't need to test for that
again, and if it is <=.7 then it must also be above 0.35.

Glad it worked for you - thanks for feeding back.

Pete

On Jul 6, 9:56 pm, mreedtigers <mreedtig...@discussions.microsoft.com>
wrote:
> Thanks for the quick help, that was much easier than I thought it would be.
>
>
>
> "Pete_UK" wrote:
> > Assuming your number is in A1, then try this out in B1:

>
> > =IF(A1<=0.35,"Level I",IF(A1<=0.7,"Level II","Level III")

>
> > Hope this helps.

>
> > Pete

>
> > On Jul 6, 9:36 pm, mreedtigers <mreedtig...@discussions.microsoft.com>
> > wrote:
> > > Hey,

>
> > > Please help. I'm trying to write a formula for the following:

>
> > > If A <= 0.35, then "Level I" or if A > 0.35 and <= 0.70, then "Level II" or
> > > if A > 0.70, then "Level III".

>
> > > Can somebody help me with this?- Hide quoted text -

>
> - Show quoted text -



 
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
Excel 2002 Formula: Urgent Conditional Formula Required Right Away - if possible blue Microsoft Excel Misc 2 11th Jul 2007 06:08 PM
Conditional Excel formula =?Utf-8?B?RCBMb2FmbWFu?= Microsoft Excel Worksheet Functions 5 15th Jul 2006 12:49 AM
excel conditional formula =?Utf-8?B?dmljdG9y?= Microsoft Excel Programming 1 8th Jun 2005 04:58 AM
Excel Formula - IF Formula & Conditional Formatting rhhince Microsoft Excel Worksheet Functions 1 20th Jun 2004 06:34 PM
Conditional Formula in Excel =?Utf-8?B?QW1leSBOYXdhcmU=?= Microsoft Excel Worksheet Functions 9 28th May 2004 05:21 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 03:56 PM.