Thread: Need a formula
View Single Post
  #8   Report Post  
Posted to microsoft.public.excel.worksheet.functions
T. Valko T. Valko is offline
external usenet poster
 
Posts: 15,768
Default Need a formula

You're welcome. Thanks for the feedback!

--
Biff
Microsoft Excel MVP


"pattigail1960" wrote in message
...
That works perfectly! Thank you!

"T. Valko" wrote:

Try this:

=IF(A1=36,5,INT(CEILING(A1/4,1))/2)

--
Biff
Microsoft Excel MVP


"pattigail1960" wrote in
message
...
I need a formula for the following example:
If A1 = 0.01 to 4.00, then B1 = 0.5
If A1 = 4.01 to 8.0, then B1 = 1.0
If A1 = 8.01 to 12.0, then B1 = 1.5
If A1 = 12.01 to 16.0, then B1 = 2.0
If A1 = 16.01 to 20.0, then B1 = 2.5
If A1 = 20.01 to 24.0, then B1 = 3.0
If A1 = 24.01 to 28.0, then B1 = 3.5
If A1 = 28.01 to 32.0, then B1 = 4.0
If A1 = 32.01 to 35.99, then B1 = 4.5
If A1 = 36.0 or greater, then B1 = 5.0

Thank you to anyone who can help - I am not proficient enough w/Excel
to
even know if that many if/then's can be met.