atomictoyguy
New Member
- Joined
- May 2, 2011
- Messages
- 18
I help run a small club and I am using a spreadsheet to manage our membership. The problem I am trying to solve that I can't seem to find a solution to is as follows.
I currently have a spreadsheet dedicated to membership renewal transactions that has the following columns, ID Number, Transaction Date, Amount Paid, & Expiration Date. I have three named ranges created, ID_NUMBER, TRANSACTION_DATE & EXPIRATION_DATE. The table has about 1700 rows and we typically run 100 - 150 members. I would like to have a table that shows how many members we have each month for each year. I have figured out that that each transaction should count if all conditions of the following have been met.
TRANSACTION_DATE <= MONTH/YEAR
EXPIRATION_DATE >= MONTH/YEAR
ID_NUMBER IS NOT DUPLICATE * This is important as we do have early renewals and I don't want them to count as two members.
Example Data:
Example Result:
I have figured out how to count total transactions per month per year but I can't seem to noodle this out. I have done some searching on your forum and on google. But have yet to find a solution.
Any help will be greatly appreciated!!! Thanks in advance!
If additional details are needed please advise and I will provide as quickly as possible.
I currently have a spreadsheet dedicated to membership renewal transactions that has the following columns, ID Number, Transaction Date, Amount Paid, & Expiration Date. I have three named ranges created, ID_NUMBER, TRANSACTION_DATE & EXPIRATION_DATE. The table has about 1700 rows and we typically run 100 - 150 members. I would like to have a table that shows how many members we have each month for each year. I have figured out that that each transaction should count if all conditions of the following have been met.
TRANSACTION_DATE <= MONTH/YEAR
EXPIRATION_DATE >= MONTH/YEAR
ID_NUMBER IS NOT DUPLICATE * This is important as we do have early renewals and I don't want them to count as two members.
Example Data:
Code:
TRANSACTION ID AMOUNT EXPIRATION
DATE NUMBER PAID DATE
2/26/1995 1 $15.00 2/26/1996
2/26/1995 2 $15.00 2/26/1996
2/26/1995 3 $15.00 2/26/1996
3/1/1995 4 $15.00 3/1/1996
3/2/1995 5 $15.00 3/2/1996
3/12/1995 6 $15.00 3/12/1996
3/26/1995 7 $15.00 3/26/1996
4/2/1995 8 $15.00 4/2/1996
4/19/1995 9 $15.00 4/19/1996
5/3/1995 10 $15.00 5/3/1996
5/10/1995 2 $15.00 2/26/1997 * Early Renewal Example
5/10/1995 1 $15.00 2/26/1997 * Early Renewal Example
Example Result:
Code:
1 2 3 4 5 6 7 8 9 10 11 12
Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec
1995 0 3 6 9 10 10 10 10 10 10 10 10
1996 10 10 9 5 3 2 2 2 2 2 2 2
1997 2 2 0 0 0 0 0 0 0 0 0 0
I have figured out how to count total transactions per month per year but I can't seem to noodle this out. I have done some searching on your forum and on google. But have yet to find a solution.
Any help will be greatly appreciated!!! Thanks in advance!
If additional details are needed please advise and I will provide as quickly as possible.