ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   Find dates to calculate amount of work per day? Possible? (https://www.excelbanter.com/excel-discussion-misc-queries/53119-find-dates-calculate-amount-work-per-day-possible.html)

TKGerdie

Find dates to calculate amount of work per day? Possible?
 
I've been reading the discussions trying to find an instance where someone
has asked about this before and I can't seem to find anything.

The sheet that I have has the date that the work was done and how many units
were completed per map section. So there could be multiple rows with that
date on it. What I'm trying to figure out is if there is a way to have Excel
search for a date and then get all of the units done that day, even if they
are on multiple rows. Then I can calculate how many units per day are being
done. I don't know how to do VBA, so everything I've been doing is using
cell formulas. Does anyone have any suggestions?

Thank you in advance for your help!

Don Guillett

Find dates to calculate amount of work per day? Possible?
 
Perhaps the SUMIF function will work for you? If not, certainly a SUMPRODUCT
formula could be devised. Post back if sumif doesn't do it.

--
Don Guillett
SalesAid Software

"TKGerdie" wrote in message
...
I've been reading the discussions trying to find an instance where someone
has asked about this before and I can't seem to find anything.

The sheet that I have has the date that the work was done and how many

units
were completed per map section. So there could be multiple rows with that
date on it. What I'm trying to figure out is if there is a way to have

Excel
search for a date and then get all of the units done that day, even if

they
are on multiple rows. Then I can calculate how many units per day are

being
done. I don't know how to do VBA, so everything I've been doing is using
cell formulas. Does anyone have any suggestions?

Thank you in advance for your help!




TKGerdie

Find dates to calculate amount of work per day? Possible?
 
The SUMIF works. However, my criteria is =10/24/05 so that I can get the sum
of the work done on that day. I want to use this same formula for every work
day through the end of the year. Is there an easier way to do this than
typing the date into the formula every time I carry it into a new cell?

"Don Guillett" wrote:

Perhaps the SUMIF function will work for you? If not, certainly a SUMPRODUCT
formula could be devised. Post back if sumif doesn't do it.

--
Don Guillett
SalesAid Software

"TKGerdie" wrote in message
...
I've been reading the discussions trying to find an instance where someone
has asked about this before and I can't seem to find anything.

The sheet that I have has the date that the work was done and how many

units
were completed per map section. So there could be multiple rows with that
date on it. What I'm trying to figure out is if there is a way to have

Excel
search for a date and then get all of the units done that day, even if

they
are on multiple rows. Then I can calculate how many units per day are

being
done. I don't know how to do VBA, so everything I've been doing is using
cell formulas. Does anyone have any suggestions?

Thank you in advance for your help!





Bob Phillips

Find dates to calculate amount of work per day? Possible?
 
You can use SUMIF to get a total of the units on a date

=SUMIF(A:A,--"2005-11-01",B:B)

You can get a count with

=COUNTIF(A:A,--"2005-11-01")

and thus get the average with

=SUMIF(A:A,--"2005-11-01",B:B)/COUNTIF(A:A,--"2005-11-01")

or you can do it directly with an array formula

=AVERAGE(IF(A1:A1000=--"2005-11-01",B1:B1000))

which is committed with Ctrl-Shift-Enter

--

HTH

RP
(remove nothere from the email address if mailing direct)


"TKGerdie" wrote in message
...
I've been reading the discussions trying to find an instance where someone
has asked about this before and I can't seem to find anything.

The sheet that I have has the date that the work was done and how many

units
were completed per map section. So there could be multiple rows with that
date on it. What I'm trying to figure out is if there is a way to have

Excel
search for a date and then get all of the units done that day, even if

they
are on multiple rows. Then I can calculate how many units per day are

being
done. I don't know how to do VBA, so everything I've been doing is using
cell formulas. Does anyone have any suggestions?

Thank you in advance for your help!




Don Guillett

Find dates to calculate amount of work per day? Possible?
 
See Bob's post and use a cell reference instead of typing in the date.
=sumif(range,a1,range)

--
Don Guillett
SalesAid Software

"TKGerdie" wrote in message
...
The SUMIF works. However, my criteria is =10/24/05 so that I can get the

sum
of the work done on that day. I want to use this same formula for every

work
day through the end of the year. Is there an easier way to do this than
typing the date into the formula every time I carry it into a new cell?

"Don Guillett" wrote:

Perhaps the SUMIF function will work for you? If not, certainly a

SUMPRODUCT
formula could be devised. Post back if sumif doesn't do it.

--
Don Guillett
SalesAid Software

"TKGerdie" wrote in message
...
I've been reading the discussions trying to find an instance where

someone
has asked about this before and I can't seem to find anything.

The sheet that I have has the date that the work was done and how many

units
were completed per map section. So there could be multiple rows with

that
date on it. What I'm trying to figure out is if there is a way to

have
Excel
search for a date and then get all of the units done that day, even if

they
are on multiple rows. Then I can calculate how many units per day are

being
done. I don't know how to do VBA, so everything I've been doing is

using
cell formulas. Does anyone have any suggestions?

Thank you in advance for your help!







TKGerdie

Find dates to calculate amount of work per day? Possible?
 
Thank you very much for the help from both of you. It is much appreciated.
And much easier on the head instead of banging it on the desk. Have a great
day.

"Don Guillett" wrote:

See Bob's post and use a cell reference instead of typing in the date.
=sumif(range,a1,range)

--
Don Guillett
SalesAid Software

"TKGerdie" wrote in message
...
The SUMIF works. However, my criteria is =10/24/05 so that I can get the

sum
of the work done on that day. I want to use this same formula for every

work
day through the end of the year. Is there an easier way to do this than
typing the date into the formula every time I carry it into a new cell?

"Don Guillett" wrote:

Perhaps the SUMIF function will work for you? If not, certainly a

SUMPRODUCT
formula could be devised. Post back if sumif doesn't do it.

--
Don Guillett
SalesAid Software

"TKGerdie" wrote in message
...
I've been reading the discussions trying to find an instance where

someone
has asked about this before and I can't seem to find anything.

The sheet that I have has the date that the work was done and how many
units
were completed per map section. So there could be multiple rows with

that
date on it. What I'm trying to figure out is if there is a way to

have
Excel
search for a date and then get all of the units done that day, even if
they
are on multiple rows. Then I can calculate how many units per day are
being
done. I don't know how to do VBA, so everything I've been doing is

using
cell formulas. Does anyone have any suggestions?

Thank you in advance for your help!







Paul Sheppard

Find dates to calculate amount of work per day? Possible?
 

TKGerdie Wrote:
I've been reading the discussions trying to find an instance where
someone
has asked about this before and I can't seem to find anything.

The sheet that I have has the date that the work was done and how many
units
were completed per map section. So there could be multiple rows with
that
date on it. What I'm trying to figure out is if there is a way to have
Excel
search for a date and then get all of the units done that day, even if
they
are on multiple rows. Then I can calculate how many units per day are
being
done. I don't know how to do VBA, so everything I've been doing is
using
cell formulas. Does anyone have any suggestions?

Thank you in advance for your help!


Hi TKGerdie

Really need a bit more info about your data to give a truly informed
response, but you could look at using a Pivot Table or the SUMIF
function


--
Paul Sheppard


------------------------------------------------------------------------
Paul Sheppard's Profile: http://www.excelforum.com/member.php...o&userid=24783
View this thread: http://www.excelforum.com/showthread...hreadid=480846


Don Guillett

Find dates to calculate amount of work per day? Possible?
 
Glad to hear you won't have a headache

--
Don Guillett
SalesAid Software

"TKGerdie" wrote in message
...
Thank you very much for the help from both of you. It is much

appreciated.
And much easier on the head instead of banging it on the desk. Have a

great
day.

"Don Guillett" wrote:

See Bob's post and use a cell reference instead of typing in the date.
=sumif(range,a1,range)

--
Don Guillett
SalesAid Software

"TKGerdie" wrote in message
...
The SUMIF works. However, my criteria is =10/24/05 so that I can get

the
sum
of the work done on that day. I want to use this same formula for

every
work
day through the end of the year. Is there an easier way to do this

than
typing the date into the formula every time I carry it into a new

cell?

"Don Guillett" wrote:

Perhaps the SUMIF function will work for you? If not, certainly a

SUMPRODUCT
formula could be devised. Post back if sumif doesn't do it.

--
Don Guillett
SalesAid Software

"TKGerdie" wrote in message
...
I've been reading the discussions trying to find an instance where

someone
has asked about this before and I can't seem to find anything.

The sheet that I have has the date that the work was done and how

many
units
were completed per map section. So there could be multiple rows

with
that
date on it. What I'm trying to figure out is if there is a way to

have
Excel
search for a date and then get all of the units done that day,

even if
they
are on multiple rows. Then I can calculate how many units per day

are
being
done. I don't know how to do VBA, so everything I've been doing

is
using
cell formulas. Does anyone have any suggestions?

Thank you in advance for your help!










All times are GMT +1. The time now is 04:52 AM.

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