W
Walter Mayes
I have a sheet (Register01532) that has:
B C E
Dates Payee Amount
I need to pick up the total amounts for each payee in each month. Same
payee may appear more than once each month at different dates. January
entries begin on B7 and end on B27
What I tried first:
SUMPRODUCT(('register01532'!$B$7:$B$128>='register01532'!$B$7)*('register015
32'!$B$7:$B$128<=$B$27)*('register01532'!$C$7:$C$128=$a7)*'register01532'!$E
$7:$E$128)
A7 in the above formula is referring to a list of all the payees on
SHEET2. This worked until I discovered there was a January entry below B27.
The above formula did not pick up the entry that was out of sequence because
it is an absolute reference to B27. I don't feel I can change the original
entries/sort by date, as this would skew the balance column.
Next I tried:
SUMPRODUCT((('register01532'!$B$7:$B$128>=DATEVALUE("02/01/04"))*('register0
1532'!<=DATEVALUE("02/29/04"))*('register01532'!$C$7:$C$128=$A7)*'register01
532'!$E$7:$E$128)))
I was thinking the above would pick out all monthly dates regardless of
where they were entered, however, I am getting a #VALUE error with the above
formula.
I would appreciate a little push in the right direction.
THANKS
Walter Mayes
B C E
Dates Payee Amount
I need to pick up the total amounts for each payee in each month. Same
payee may appear more than once each month at different dates. January
entries begin on B7 and end on B27
What I tried first:
SUMPRODUCT(('register01532'!$B$7:$B$128>='register01532'!$B$7)*('register015
32'!$B$7:$B$128<=$B$27)*('register01532'!$C$7:$C$128=$a7)*'register01532'!$E
$7:$E$128)
A7 in the above formula is referring to a list of all the payees on
SHEET2. This worked until I discovered there was a January entry below B27.
The above formula did not pick up the entry that was out of sequence because
it is an absolute reference to B27. I don't feel I can change the original
entries/sort by date, as this would skew the balance column.
Next I tried:
SUMPRODUCT((('register01532'!$B$7:$B$128>=DATEVALUE("02/01/04"))*('register0
1532'!<=DATEVALUE("02/29/04"))*('register01532'!$C$7:$C$128=$A7)*'register01
532'!$E$7:$E$128)))
I was thinking the above would pick out all monthly dates regardless of
where they were entered, however, I am getting a #VALUE error with the above
formula.
I would appreciate a little push in the right direction.
THANKS
Walter Mayes