#1   Report Post  
Posted to microsoft.public.excel.misc
KAB KAB is offline
external usenet poster
 
Posts: 3
Default SUMIF

My spreadsheet is as follows:

1/3/2005 7:15 AM 8:15 AM 1.00 0:30
8:45 AM 9:45 AM 1.00 0:15
10:00 AM 11:00 AM 1.00 0:00
11:00 AM 12:30 PM 1.50 0:15
12:45 PM 3:45 PM 3.00 0:30
4:15 PM 6:15 PM 2.00

I am attempting to total all time equal to or less than 0:30 in column E
into Column F. Thank you for your assistance...

-KAB
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 320
Default SUMIF

Your ilustration seemed to only go thru col E. However:
=SUMIF(E1:F1000,"<"&Timevalue("0:30"))

"KAB" wrote:

My spreadsheet is as follows:

1/3/2005 7:15 AM 8:15 AM 1.00 0:30
8:45 AM 9:45 AM 1.00 0:15
10:00 AM 11:00 AM 1.00 0:00
11:00 AM 12:30 PM 1.50 0:15
12:45 PM 3:45 PM 3.00 0:30
4:15 PM 6:15 PM 2.00

I am attempting to total all time equal to or less than 0:30 in column E
into Column F. Thank you for your assistance...

-KAB

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 964
Default SUMIF

=SUMIF(Range1,"<="&(1/48),Range2)

or


=SUMIF(F4:F10,"<="&(1/48),E4:E10)


or


=SUMIF(F4:F10,"<="&TIME(0,30,1),E4:E10)


depending on where the values are




--


Regards,


Peo Sjoblom

"KAB" wrote in message
...
My spreadsheet is as follows:

1/3/2005 7:15 AM 8:15 AM 1.00 0:30
8:45 AM 9:45 AM 1.00 0:15
10:00 AM 11:00 AM 1.00 0:00
11:00 AM 12:30 PM 1.50 0:15
12:45 PM 3:45 PM 3.00 0:30
4:15 PM 6:15 PM 2.00

I am attempting to total all time equal to or less than 0:30 in column E
into Column F. Thank you for your assistance...

-KAB



  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 964
Default SUMIF

Use < instead of <=

--


Regards,


Peo Sjoblom

"Peo Sjoblom" wrote in message
...
=SUMIF(Range1,"<="&(1/48),Range2)

or


=SUMIF(F4:F10,"<="&(1/48),E4:E10)


or


=SUMIF(F4:F10,"<="&TIME(0,30,1),E4:E10)


depending on where the values are




--


Regards,


Peo Sjoblom

"KAB" wrote in message
...
My spreadsheet is as follows:

1/3/2005 7:15 AM 8:15 AM 1.00 0:30
8:45 AM 9:45 AM 1.00 0:15
10:00 AM 11:00 AM 1.00 0:00
11:00 AM 12:30 PM 1.50 0:15
12:45 PM 3:45 PM 3.00 0:30
4:15 PM 6:15 PM 2.00

I am attempting to total all time equal to or less than 0:30 in column E
into Column F. Thank you for your assistance...

-KAB





  #5   Report Post  
Posted to microsoft.public.excel.misc
KAB KAB is offline
external usenet poster
 
Posts: 3
Default SUMIF

This returns 0 values, even for time incremented larger than 0:30. What may I
be doing incorrectly?
--
-KAB


"Bob Umlas, Excel MVP" wrote:

Your ilustration seemed to only go thru col E. However:
=SUMIF(E1:F1000,"<"&Timevalue("0:30"))

"KAB" wrote:

My spreadsheet is as follows:

1/3/2005 7:15 AM 8:15 AM 1.00 0:30
8:45 AM 9:45 AM 1.00 0:15
10:00 AM 11:00 AM 1.00 0:00
11:00 AM 12:30 PM 1.50 0:15
12:45 PM 3:45 PM 3.00 0:30
4:15 PM 6:15 PM 2.00

I am attempting to total all time equal to or less than 0:30 in column E
into Column F. Thank you for your assistance...

-KAB



  #6   Report Post  
Posted to microsoft.public.excel.misc
KAB KAB is offline
external usenet poster
 
Posts: 3
Default SUMIF

I am getting results of 0, even for those entries greater than 0:30. Thank
you for the response...
--
-KAB


"Peo Sjoblom" wrote:

Use < instead of <=

--


Regards,


Peo Sjoblom

"Peo Sjoblom" wrote in message
...
=SUMIF(Range1,"<="&(1/48),Range2)

or


=SUMIF(F4:F10,"<="&(1/48),E4:E10)


or


=SUMIF(F4:F10,"<="&TIME(0,30,1),E4:E10)


depending on where the values are




--


Regards,


Peo Sjoblom

"KAB" wrote in message
...
My spreadsheet is as follows:

1/3/2005 7:15 AM 8:15 AM 1.00 0:30
8:45 AM 9:45 AM 1.00 0:15
10:00 AM 11:00 AM 1.00 0:00
11:00 AM 12:30 PM 1.50 0:15
12:45 PM 3:45 PM 3.00 0:30
4:15 PM 6:15 PM 2.00

I am attempting to total all time equal to or less than 0:30 in column E
into Column F. Thank you for your assistance...

-KAB






  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 964
Default SUMIF

Which range hold the 00:15, 00:00, 00:15, 00:30 etc and which hold the
time difference between the end - start for instance 1.00, 1.00, 1.50 etc?

I assume the latter are what you want to sum where the former is less than
00:30?

--


Regards,


Peo Sjoblom

"KAB" wrote in message
...
I am getting results of 0, even for those entries greater than 0:30. Thank
you for the response...
--
-KAB


"Peo Sjoblom" wrote:

Use < instead of <=

--


Regards,


Peo Sjoblom

"Peo Sjoblom" wrote in message
...
=SUMIF(Range1,"<="&(1/48),Range2)

or


=SUMIF(F4:F10,"<="&(1/48),E4:E10)


or


=SUMIF(F4:F10,"<="&TIME(0,30,1),E4:E10)


depending on where the values are




--


Regards,


Peo Sjoblom

"KAB" wrote in message
...
My spreadsheet is as follows:

1/3/2005 7:15 AM 8:15 AM 1.00 0:30
8:45 AM 9:45 AM 1.00 0:15
10:00 AM 11:00 AM 1.00 0:00
11:00 AM 12:30 PM 1.50 0:15
12:45 PM 3:45 PM 3.00 0:30
4:15 PM 6:15 PM 2.00

I am attempting to total all time equal to or less than 0:30 in column
E
into Column F. Thank you for your assistance...

-KAB







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
sumif for multi conditions. i.e sumif(A1:A10,"Jon" and B1:B10,"A" Harry Seymour Excel Worksheet Functions 9 June 12th 07 10:47 PM
Sumif Ananth Excel Discussion (Misc queries) 3 July 10th 06 08:59 AM
Embedding a Sumif in a sumif C.Pflugrath Excel Worksheet Functions 5 August 31st 05 07:31 PM
nested sumif or sumif with two criteria dshigley Excel Worksheet Functions 5 April 5th 05 03:34 AM
SUMIF - Range name to used for the "sum_range" portion of a SUMIF function Oscar Excel Worksheet Functions 2 January 11th 05 11:01 PM


All times are GMT +1. The time now is 11:18 AM.

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"