Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 4
Default conditional formula in Excel

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?
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,856
Default conditional formula in Excel

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
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?



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,089
Default conditional formula in Excel

=IF(A5<=0.35,"Level 1",IF(A5<=0.7,"Level 2","Level3"))

Regards

Trevor


"mreedtigers" wrote in message
...
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?



  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15,768
Default conditional formula in Excel

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" wrote in message
...
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?



  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 4
Default conditional formula in Excel

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
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?






  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,856
Default conditional formula in Excel

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
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
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
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
Formula, Conditional Formula Needed Karl Excel Discussion (Misc queries) 12 June 23rd 07 04:12 AM
Need conditional formula Dan Hale Excel Worksheet Functions 2 August 29th 06 09:08 AM
Conditional Formula to indicate Formula in cell SteveW New Users to Excel 9 August 2nd 06 01:12 AM
Conditional Excel formula D Loafman Excel Worksheet Functions 5 July 15th 06 12:49 AM
conditional formula thanks Excel Worksheet Functions 2 April 14th 05 10:06 PM


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

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"