ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   Dates: How many entries per week? (https://www.excelbanter.com/excel-discussion-misc-queries/74879-dates-how-many-entries-per-week.html)

Jill

Dates: How many entries per week?
 
I have a spreadsheet with entries by date. I would like to know how many
entries per week there are. I have created a list of beginning dates for
weeks, as in a1=8/17/05, a2=8/24/05 and was attempting to count for datea1
and <a2.
Is there an easy way to do this?

Alternative is there a way to count how many entries per month?

thanks

Rogerio Takejame

Dates: How many entries per week?
 
If your dates are in cells A5:A50, you can try this matrix formula:

=SUM(IF(AND(A5:A50A1;A5:A50<A2);1;0))

Remember that matrix formulas MUST be finished with a CTRL+SHIFT+ENTER

--
Rogerio Takejame
Americana - Sao Paulo - Brazil


"Jill" wrote:

I have a spreadsheet with entries by date. I would like to know how many
entries per week there are. I have created a list of beginning dates for
weeks, as in a1=8/17/05, a2=8/24/05 and was attempting to count for datea1
and <a2.
Is there an easy way to do this?

Alternative is there a way to count how many entries per month?

thanks


Jill

Dates: How many entries per week?
 
This is not working for me. I get an error message about Logical1 that points
to a1. Should A1 not be a date? I have it as the 8/7/05 of the first date to
check against.

Thanks

"Rogerio Takejame" wrote:

If your dates are in cells A5:A50, you can try this matrix formula:

=SUM(IF(AND(A5:A50A1;A5:A50<A2);1;0))

Remember that matrix formulas MUST be finished with a CTRL+SHIFT+ENTER

--
Rogerio Takejame
Americana - Sao Paulo - Brazil


"Jill" wrote:

I have a spreadsheet with entries by date. I would like to know how many
entries per week there are. I have created a list of beginning dates for
weeks, as in a1=8/17/05, a2=8/24/05 and was attempting to count for datea1
and <a2.
Is there an easy way to do this?

Alternative is there a way to count how many entries per month?

thanks


Rogerio Takejame

Dates: How many entries per week?
 
OK, try this one that is simpler:

=SUM((A5:A50A1)*(A5:A50<A2))

Don't forget the CTRL+SHIFT+ENTER

--
Rogerio Takejame
Americana - Sao Paulo - Brazil


"Jill" wrote:

This is not working for me. I get an error message about Logical1 that points
to a1. Should A1 not be a date? I have it as the 8/7/05 of the first date to
check against.

Thanks

"Rogerio Takejame" wrote:

If your dates are in cells A5:A50, you can try this matrix formula:

=SUM(IF(AND(A5:A50A1;A5:A50<A2);1;0))

Remember that matrix formulas MUST be finished with a CTRL+SHIFT+ENTER

--
Rogerio Takejame
Americana - Sao Paulo - Brazil


"Jill" wrote:

I have a spreadsheet with entries by date. I would like to know how many
entries per week there are. I have created a list of beginning dates for
weeks, as in a1=8/17/05, a2=8/24/05 and was attempting to count for datea1
and <a2.
Is there an easy way to do this?

Alternative is there a way to count how many entries per month?

thanks


Jill

Dates: How many entries per week?
 
Rogerio, no error message now, but an answer of 0 which is clearly not true.
Thanks, Jill

"Rogerio Takejame" wrote:

OK, try this one that is simpler:

=SUM((A5:A50A1)*(A5:A50<A2))

Don't forget the CTRL+SHIFT+ENTER

--
Rogerio Takejame
Americana - Sao Paulo - Brazil


"Jill" wrote:

This is not working for me. I get an error message about Logical1 that points
to a1. Should A1 not be a date? I have it as the 8/7/05 of the first date to
check against.

Thanks

"Rogerio Takejame" wrote:

If your dates are in cells A5:A50, you can try this matrix formula:

=SUM(IF(AND(A5:A50A1;A5:A50<A2);1;0))

Remember that matrix formulas MUST be finished with a CTRL+SHIFT+ENTER

--
Rogerio Takejame
Americana - Sao Paulo - Brazil


"Jill" wrote:

I have a spreadsheet with entries by date. I would like to know how many
entries per week there are. I have created a list of beginning dates for
weeks, as in a1=8/17/05, a2=8/24/05 and was attempting to count for datea1
and <a2.
Is there an easy way to do this?

Alternative is there a way to count how many entries per month?

thanks


Rogerio Takejame

Dates: How many entries per week?
 
Can you send me a copy of your worksheet at ?

--
Rogerio Takejame
Americana - Sao Paulo - Brazil


"Jill" wrote:

Rogerio, no error message now, but an answer of 0 which is clearly not true.
Thanks, Jill

"Rogerio Takejame" wrote:

OK, try this one that is simpler:

=SUM((A5:A50A1)*(A5:A50<A2))

Don't forget the CTRL+SHIFT+ENTER

--
Rogerio Takejame
Americana - Sao Paulo - Brazil


"Jill" wrote:

This is not working for me. I get an error message about Logical1 that points
to a1. Should A1 not be a date? I have it as the 8/7/05 of the first date to
check against.

Thanks

"Rogerio Takejame" wrote:

If your dates are in cells A5:A50, you can try this matrix formula:

=SUM(IF(AND(A5:A50A1;A5:A50<A2);1;0))

Remember that matrix formulas MUST be finished with a CTRL+SHIFT+ENTER

--
Rogerio Takejame
Americana - Sao Paulo - Brazil


"Jill" wrote:

I have a spreadsheet with entries by date. I would like to know how many
entries per week there are. I have created a list of beginning dates for
weeks, as in a1=8/17/05, a2=8/24/05 and was attempting to count for datea1
and <a2.
Is there an easy way to do this?

Alternative is there a way to count how many entries per month?

thanks


Jill

Dates: How many entries per week?
 
Rogerio - thanks for your help with this. Your 3/3 solution worked, once I
had corrected my invalid dates.
Jill

"Rogerio Takejame" wrote:

Can you send me a copy of your worksheet at ?

--
Rogerio Takejame
Americana - Sao Paulo - Brazil


"Jill" wrote:

Rogerio, no error message now, but an answer of 0 which is clearly not true.
Thanks, Jill

"Rogerio Takejame" wrote:

OK, try this one that is simpler:

=SUM((A5:A50A1)*(A5:A50<A2))

Don't forget the CTRL+SHIFT+ENTER

--
Rogerio Takejame
Americana - Sao Paulo - Brazil


"Jill" wrote:

This is not working for me. I get an error message about Logical1 that points
to a1. Should A1 not be a date? I have it as the 8/7/05 of the first date to
check against.

Thanks

"Rogerio Takejame" wrote:

If your dates are in cells A5:A50, you can try this matrix formula:

=SUM(IF(AND(A5:A50A1;A5:A50<A2);1;0))

Remember that matrix formulas MUST be finished with a CTRL+SHIFT+ENTER

--
Rogerio Takejame
Americana - Sao Paulo - Brazil


"Jill" wrote:

I have a spreadsheet with entries by date. I would like to know how many
entries per week there are. I have created a list of beginning dates for
weeks, as in a1=8/17/05, a2=8/24/05 and was attempting to count for datea1
and <a2.
Is there an easy way to do this?

Alternative is there a way to count how many entries per month?

thanks



All times are GMT +1. The time now is 07:03 PM.

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