ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   SUMIF (https://www.excelbanter.com/excel-discussion-misc-queries/200450-sumif.html)

KAB

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

Bob Umlas, Excel MVP

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


Peo Sjoblom[_2_]

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




Peo Sjoblom[_2_]

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






KAB

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


KAB

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







Peo Sjoblom[_2_]

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









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

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com