Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default Complex IF formula w/ time

I need to create a spreadsheet for my boss scoring the length of calls. 4:32
means 4 min and 32 secs. The formula needs to have the following for scores:
5:00= 1 point

4:31-5:00= 2 points
4:00-4:30= 3 points
3:30-359= 4 points
<3:30= 5 points

I keep getting an errors when I attempt this I think its because of the time
issue. I need to figure out how to format my time so it is min and sec.
When I attempt to do that w/ the format option it changes my 4:32 to
32:00:00. If someone could walk me thru this I would be extremely
appreciative.
  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,651
Default Complex IF formula w/ time

Wouldn't that be working in hours and minutes, rather than minutes and
seconds?

[That may, of course, be what the OP needs, if they've typed in 4:32, as
that would be interpreted as 04:32:00, not as 00:04:32.]
--
David Biddulph

"Rick Rothstein (MVP - VB)" wrote in
message ...
In case you were not aware, your ranges are not all the same length.
Anyway, give this formula a try...

=IF(A1--"5:00",1,IF(A1--"4:30",2,IF(A1--"3:59",3,IF(A1--"3:29",4,5))))

Rick


"Erin Leva" <Erin wrote in message
...
I need to create a spreadsheet for my boss scoring the length of calls.
4:32
means 4 min and 32 secs. The formula needs to have the following for
scores:
5:00= 1 point

4:31-5:00= 2 points
4:00-4:30= 3 points
3:30-359= 4 points
<3:30= 5 points

I keep getting an errors when I attempt this I think its because of the
time
issue. I need to figure out how to format my time so it is min and sec.
When I attempt to do that w/ the format option it changes my 4:32 to
32:00:00. If someone could walk me thru this I would be extremely
appreciative.




  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default Complex IF formula w/ time

Yes, I just pasted a correction for that based on seeing one of the other
responses (your message hadn't appeared in my newsreader yet); but in
thinking about it, I'm not sure what the OP actually needs (so he'll have
both to choose from then<g).

Rick


"David Biddulph" <groups [at] biddulph.org.uk wrote in message
...
Wouldn't that be working in hours and minutes, rather than minutes and
seconds?

[That may, of course, be what the OP needs, if they've typed in 4:32, as
that would be interpreted as 04:32:00, not as 00:04:32.]
--
David Biddulph

"Rick Rothstein (MVP - VB)" wrote in
message ...
In case you were not aware, your ranges are not all the same length.
Anyway, give this formula a try...

=IF(A1--"5:00",1,IF(A1--"4:30",2,IF(A1--"3:59",3,IF(A1--"3:29",4,5))))

Rick


"Erin Leva" <Erin wrote in message
...
I need to create a spreadsheet for my boss scoring the length of calls.
4:32
means 4 min and 32 secs. The formula needs to have the following for
scores:
5:00= 1 point
4:31-5:00= 2 points
4:00-4:30= 3 points
3:30-359= 4 points
<3:30= 5 points

I keep getting an errors when I attempt this I think its because of the
time
issue. I need to figure out how to format my time so it is min and sec.
When I attempt to do that w/ the format option it changes my 4:32 to
32:00:00. If someone could walk me thru this I would be extremely
appreciative.







  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default Complex IF formula w/ time

Now if I would have only typed the formula out correctly, that would have
been nice. Use this formula, not the one I posted previously...

=IF(A1--"00:05:00",1,IF(A1--"00:04:30",2,IF(A1--"00:03:59",3,IF(A1--"00:03:29",4,5))))

Rick


"Rick Rothstein (MVP - VB)" wrote in
message ...
In case you were not aware, your ranges are not all the same length.
Anyway, give this formula a try...

=IF(A1--"5:00",1,IF(A1--"4:30",2,IF(A1--"3:59",3,IF(A1--"3:29",4,5))))

Rick


"Erin Leva" <Erin wrote in message
...
I need to create a spreadsheet for my boss scoring the length of calls.
4:32
means 4 min and 32 secs. The formula needs to have the following for
scores:
5:00= 1 point

4:31-5:00= 2 points
4:00-4:30= 3 points
3:30-359= 4 points
<3:30= 5 points

I keep getting an errors when I attempt this I think its because of the
time
issue. I need to figure out how to format my time so it is min and sec.
When I attempt to do that w/ the format option it changes my 4:32 to
32:00:00. If someone could walk me thru this I would be extremely
appreciative.



  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,651
Default Complex IF formula w/ time

By what formatting process did you end up with 32:00:00 ?
If you had typed in 4:32 would have expected you to get 32:00 if you
formatted as mm:ss, and 272:00 if you formatted as [mm]:ss.

This is because 4:32 is interpretted by Excel as h:mm, not m:ss. To get
m:ss you need to enter the data as 4:32.0 or as 0:4:32.
If you have vast amounts of data already entered as h:mm and you want to
convert to m:ss, divide by 60.
--
David Biddulph

"Erin Leva" <Erin wrote in message
...
I need to create a spreadsheet for my boss scoring the length of calls.
4:32
means 4 min and 32 secs. The formula needs to have the following for
scores:
5:00= 1 point

4:31-5:00= 2 points
4:00-4:30= 3 points
3:30-359= 4 points
<3:30= 5 points

I keep getting an errors when I attempt this I think its because of the
time
issue. I need to figure out how to format my time so it is min and sec.
When I attempt to do that w/ the format option it changes my 4:32 to
32:00:00. If someone could walk me thru this I would be extremely
appreciative.



  #8   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 6
Default Complex IF formula w/ time

The formula worked when I converted the time to 0:04:32, Thank you!!! I can't
even begin to tell you how much time I have invested trying to make this
formula work.

"David Biddulph" wrote:

By what formatting process did you end up with 32:00:00 ?
If you had typed in 4:32 would have expected you to get 32:00 if you
formatted as mm:ss, and 272:00 if you formatted as [mm]:ss.

This is because 4:32 is interpretted by Excel as h:mm, not m:ss. To get
m:ss you need to enter the data as 4:32.0 or as 0:4:32.
If you have vast amounts of data already entered as h:mm and you want to
convert to m:ss, divide by 60.
--
David Biddulph

"Erin Leva" <Erin wrote in message
...
I need to create a spreadsheet for my boss scoring the length of calls.
4:32
means 4 min and 32 secs. The formula needs to have the following for
scores:
5:00= 1 point

4:31-5:00= 2 points
4:00-4:30= 3 points
3:30-359= 4 points
<3:30= 5 points

I keep getting an errors when I attempt this I think its because of the
time
issue. I need to figure out how to format my time so it is min and sec.
When I attempt to do that w/ the format option it changes my 4:32 to
32:00:00. If someone could walk me thru this I would be extremely
appreciative.




  #9   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,651
Default Complex IF formula w/ time

Glad it helped.
--
David Biddulph

"Erin Leva" wrote in message
...
The formula worked when I converted the time to 0:04:32, Thank you!!! I
can't
even begin to tell you how much time I have invested trying to make this
formula work.

"David Biddulph" wrote:

By what formatting process did you end up with 32:00:00 ?
If you had typed in 4:32 would have expected you to get 32:00 if you
formatted as mm:ss, and 272:00 if you formatted as [mm]:ss.

This is because 4:32 is interpretted by Excel as h:mm, not m:ss. To get
m:ss you need to enter the data as 4:32.0 or as 0:4:32.
If you have vast amounts of data already entered as h:mm and you want to
convert to m:ss, divide by 60.
--
David Biddulph

"Erin Leva" <Erin wrote in message
...
I need to create a spreadsheet for my boss scoring the length of calls.
4:32
means 4 min and 32 secs. The formula needs to have the following for
scores:
5:00= 1 point
4:31-5:00= 2 points
4:00-4:30= 3 points
3:30-359= 4 points
<3:30= 5 points

I keep getting an errors when I attempt this I think its because of the
time
issue. I need to figure out how to format my time so it is min and
sec.
When I attempt to do that w/ the format option it changes my 4:32 to
32:00:00. If someone could walk me thru this I would be extremely
appreciative.






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
complex formula? Ronny Excel Discussion (Misc queries) 1 October 7th 07 03:02 PM
convert from percentage of time to time using complex formula in . Nush Excel Worksheet Functions 2 October 4th 07 05:20 PM
Complex Time Window / date based calculation stef Excel Worksheet Functions 0 September 10th 07 08:06 PM
Complex Formula marwildfw Excel Worksheet Functions 6 May 29th 07 08:34 PM
Complex =mid formula foff Excel Worksheet Functions 2 August 14th 05 12:32 PM


All times are GMT +1. The time now is 05:54 AM.

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"