#1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 78
Default calc time value

hi
i am trying to calculate theamount o time between 2 time values

s25 = 05:59:59
t25 = 06:00:00

Q R
row 34 04:36:38 04:37:03
row 35 05:16:52 07:14:01


=IF(O34="Saturday",IF(AND(R34$T$25,R34<$S
$25),"06:00:00",TEXT(MOD(R34,1),"hh:mm:ss")),R34) returns 04:37:03



=IF(O35="Saturday",IF(AND(R35$T$25,R35<$S
$25),"06:00:00",TEXT(MOD(R35,1),"hh:mm:ss")),R35) returns
07:14:01

what i want is if the the time value in column R exceeds 06:00:00 the
time is replace with 06:00:00
this works for row 34 but not row 35

any ideas where i going wrong

thanks kevin

  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 11
Default calc time value

I can tell you what's wrong her,b ut I can't tell you how to do it right
because you didn't mention such important things as where you are getting
the difference (is that already calculated in R), what the purpose of
column Q is (you listed it but don't seem to use it at all), and what
Saturday and column O have to do with anything.

The reason why your formula doesn't work is that what's in column R
cannot be simultaneously less than 05:59:59 and greater than 06:00:00
(that's what your AND is asking) so you will always get spit back
whatever is in column R.

--David

--
David M. Marcovitz
Microsoft PowerPoint MVP
Director of Graduate Programs in Educational Technology
Loyola College in Maryland
Author of _Powerful PowerPoint for Educators_
http://www.PowerfulPowerPoint.com/

kevcar40 wrote in news:1193841473.628631.271180
@y42g2000hsy.googlegroups.com:

hi
i am trying to calculate theamount o time between 2 time values

s25 = 05:59:59
t25 = 06:00:00

Q R
row 34 04:36:38 04:37:03
row 35 05:16:52 07:14:01


=IF(O34="Saturday",IF(AND(R34$T$25,R34<$S
$25),"06:00:00",TEXT(MOD(R34,1),"hh:mm:ss")),R34) returns 04:37:03



=IF(O35="Saturday",IF(AND(R35$T$25,R35<$S
$25),"06:00:00",TEXT(MOD(R35,1),"hh:mm:ss")),R35) returns
07:14:01

what i want is if the the time value in column R exceeds 06:00:00 the
time is replace with 06:00:00
this works for row 34 but not row 35

any ideas where i going wrong

thanks kevin



  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 78
Default calc time value

thanks for reply
sorry for ommiting some important points

ok here we go

Column Q is the time that the occurrence started
Comumn R is the time that the occurence ends
Column R is already calculated
i want to subtract the end occurrence from the start occurrence and
disregard any time occcurred if after 06:00:00
Saturday in column O is checking the day of the week as i only want
this to apply on a saturday morning.




On 31 Oct, 14:52, "David M. Marcovitz" wrote:
I can tell you what's wrong her,b ut I can't tell you how to do it right
because you didn't mention such important things as where you are getting
the difference (is that already calculated in R), what the purpose of
column Q is (you listed it but don't seem to use it at all), and what
Saturday and column O have to do with anything.

The reason why your formula doesn't work is that what's in column R
cannot be simultaneously less than 05:59:59 and greater than 06:00:00
(that's what your AND is asking) so you will always get spit back
whatever is in column R.

--David

--
David M. Marcovitz
Microsoft PowerPoint MVP
Director of Graduate Programs in Educational Technology
Loyola College in Maryland
Author of _Powerful PowerPoint for Educators_http://www.PowerfulPowerPoint.com/

kevcar40 wrote in news:1193841473.628631.271180
@y42g2000hsy.googlegroups.com:



hi
i am trying to calculate theamount o time between 2 time values


s25 = 05:59:59
t25 = 06:00:00


Q R
row 34 04:36:38 04:37:03
row 35 05:16:52 07:14:01


=IF(O34="Saturday",IF(AND(R34$T$25,R34<$S
$25),"06:00:00",TEXT(MOD(R34,1),"hh:mm:ss")),R34) returns 04:37:03





=IF(O35="Saturday",IF(AND(R35$T$25,R35<$S
$25),"06:00:00",TEXT(MOD(R35,1),"hh:mm:ss")),R35) returns
07:14:01


what i want is if the the time value in column R exceeds 06:00:00 the
time is replace with 06:00:00
this works for row 34 but not row 35


any ideas where i going wrong


thanks kevin- Hide quoted text -


- Show quoted text -



  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 11
Default calc time value

If I understand you correctly (and I'm fairly sure I don't), this is what
you want:

=IF(O4="Saturday",IF(R4$T$25,TEXT(MOD($T$25-Q4,1),"hh:mm:ss"),TEXT(MOD
(R4-Q4,1),"hh:mm:ss")),"")

You said you needed to subtract the end time (in R) from the start time
(in Q), and you said R is already calculated. That threw me off because I
wasn't sure if R is supposed to be the end time or the difference between
the start and end times. I assumed the former in my calculation.

--David

--
David M. Marcovitz
Microsoft PowerPoint MVP
Director of Graduate Programs in Educational Technology
Loyola College in Maryland
Author of _Powerful PowerPoint for Educators_
http://www.PowerfulPowerPoint.com/

kevcar40 wrote in
ups.com:

thanks for reply
sorry for ommiting some important points

ok here we go

Column Q is the time that the occurrence started
Comumn R is the time that the occurence ends
Column R is already calculated
i want to subtract the end occurrence from the start occurrence and
disregard any time occcurred if after 06:00:00
Saturday in column O is checking the day of the week as i only want
this to apply on a saturday morning.




On 31 Oct, 14:52, "David M. Marcovitz" wrote:
I can tell you what's wrong her,b ut I can't tell you how to do it
right because you didn't mention such important things as where you
are getting the difference (is that already calculated in R), what
the purpose of column Q is (you listed it but don't seem to use it at
all), and what Saturday and column O have to do with anything.

The reason why your formula doesn't work is that what's in column R
cannot be simultaneously less than 05:59:59 and greater than 06:00:00
(that's what your AND is asking) so you will always get spit back
whatever is in column R.

--David

--
David M. Marcovitz
Microsoft PowerPoint MVP
Director of Graduate Programs in Educational Technology
Loyola College in Maryland
Author of _Powerful PowerPoint for
Educators_http://www.PowerfulPowerPoint.com/

kevcar40 wrote in
news:1193841473.628631.271180 @y42g2000hsy.googlegroups.com:



hi
i am trying to calculate theamount o time between 2 time values


s25 = 05:59:59
t25 = 06:00:00


Q R
row 34 04:36:38 04:37:03
row 35 05:16:52 07:14:01


=IF(O34="Saturday",IF(AND(R34$T$25,R34<$S
$25),"06:00:00",TEXT(MOD(R34,1),"hh:mm:ss")),R34) returns
04:37:03





=IF(O35="Saturday",IF(AND(R35$T$25,R35<$S
$25),"06:00:00",TEXT(MOD(R35,1),"hh:mm:ss")),R35) returns
07:14:01


what i want is if the the time value in column R exceeds 06:00:00
the time is replace with 06:00:00
this works for row 34 but not row 35


any ideas where i going wrong


thanks kevin- 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
Calc F9) Button and time. Timmy Mac1 Excel Discussion (Misc queries) 3 November 9th 05 06:40 PM
formula that calc the diff in time, with a less than function? Debbs Excel Worksheet Functions 1 November 3rd 05 07:23 PM
Time Calc - 24hrs vs 0hrs Ltat42a Excel Discussion (Misc queries) 9 October 19th 05 09:14 PM
time sheet calc by time in and out JenMo Excel Worksheet Functions 1 June 7th 05 06:23 PM
Problem with time calc Tom Excel Worksheet Functions 2 November 6th 04 12:04 PM


All times are GMT +1. The time now is 01:32 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"