Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 12
Default Finding New Contributions

Is there a formula that will do the following:

Where...
A4:A766 contain contributions made in 2001 by individuals
B4:B766 contain contributions made in 2002 by individuals
C4:C766 contain contributions made in 2003 by individuals
D4:D766 contain contributions made in 2004 by individuals
E4:E766 contain contributions made in 2005 by individuals
F4:F766 contain contributions made in 2006 by individuals
G4:G766 contain pledges made for next year by individuals

Need to count the number of individuals who have PLEDGED FOR 2007 but have
NOT CONTRIBUTED SINCE AT LEAST 2004...EARLIER IF NECESSARY.

Example: If a person has a recorded pledge in cells G4:G766, fomula needs
to look back at all previous years and count all persons if their last
contribution was in 2004. If these person's last contributions was in 2003
and nothing since, they should also be counted. If their last contributions
were in 2002 and nothing since, they should be counted...if in 2001 and
nothing since, they should be counted. If any person's last contribution was
in 2005 or 2006, they should NOT be counted.

Also need a formula that SUMS all 2007 pledge dollars based upon this same
criteria.

Whew!

Any ideas?

JT
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15,768
Default Finding New Contributions

If a person DIDN'T contribute I'm assuming the cell is empty or maybe
contains a 0?

If I understood you. Try this:

For the count:

=SUMPRODUCT(--((A4:A7660)+(B4:B7660)+(C4:C7660)+(D4:D7660)0 ),--((E4:E7660)+(F4:F7660)=0),--(G4:G7660))

For the sum:

=SUMPRODUCT(--((A4:A7660)+(B4:B7660)+(C4:C7660)+(D4:D7660)0 ),--((E4:E7660)+(F4:F7660)=0),G4:G766)

Biff

"Jack Taylor" wrote in message
...
Is there a formula that will do the following:

Where...
A4:A766 contain contributions made in 2001 by individuals
B4:B766 contain contributions made in 2002 by individuals
C4:C766 contain contributions made in 2003 by individuals
D4:D766 contain contributions made in 2004 by individuals
E4:E766 contain contributions made in 2005 by individuals
F4:F766 contain contributions made in 2006 by individuals
G4:G766 contain pledges made for next year by individuals

Need to count the number of individuals who have PLEDGED FOR 2007 but have
NOT CONTRIBUTED SINCE AT LEAST 2004...EARLIER IF NECESSARY.

Example: If a person has a recorded pledge in cells G4:G766, fomula needs
to look back at all previous years and count all persons if their last
contribution was in 2004. If these person's last contributions was in
2003
and nothing since, they should also be counted. If their last
contributions
were in 2002 and nothing since, they should be counted...if in 2001 and
nothing since, they should be counted. If any person's last contribution
was
in 2005 or 2006, they should NOT be counted.

Also need a formula that SUMS all 2007 pledge dollars based upon this same
criteria.

Whew!

Any ideas?

JT



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 618
Default Finding New Contributions

In H4 use the formula =IF(AND(G40,SUM(E4:F4)=0),G4,"")
Then SUM that column.
--
David Biddulph

"Jack Taylor" wrote in message
...
Is there a formula that will do the following:

Where...
A4:A766 contain contributions made in 2001 by individuals
B4:B766 contain contributions made in 2002 by individuals
C4:C766 contain contributions made in 2003 by individuals
D4:D766 contain contributions made in 2004 by individuals
E4:E766 contain contributions made in 2005 by individuals
F4:F766 contain contributions made in 2006 by individuals
G4:G766 contain pledges made for next year by individuals

Need to count the number of individuals who have PLEDGED FOR 2007 but have
NOT CONTRIBUTED SINCE AT LEAST 2004...EARLIER IF NECESSARY.

Example: If a person has a recorded pledge in cells G4:G766, fomula needs
to look back at all previous years and count all persons if their last
contribution was in 2004. If these person's last contributions was in
2003
and nothing since, they should also be counted. If their last
contributions
were in 2002 and nothing since, they should be counted...if in 2001 and
nothing since, they should be counted. If any person's last contribution
was
in 2005 or 2006, they should NOT be counted.

Also need a formula that SUMS all 2007 pledge dollars based upon this same
criteria.

Whew!

Any ideas?

JT



  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 340
Default Finding New Contributions

Assuming all contributions in range are positive or blank try these:

=SUMPRODUCT((MMULT(--(A4:G7660),{1;1;1;1;-5;-5;5})5))

=SUMPRODUCT((MMULT(--(A4:G7660),{1;1;1;1;-5;-5;5})5)*G4:G766)


Jack Taylor wrote:
Is there a formula that will do the following:

Where...
A4:A766 contain contributions made in 2001 by individuals
B4:B766 contain contributions made in 2002 by individuals
C4:C766 contain contributions made in 2003 by individuals
D4:D766 contain contributions made in 2004 by individuals
E4:E766 contain contributions made in 2005 by individuals
F4:F766 contain contributions made in 2006 by individuals
G4:G766 contain pledges made for next year by individuals

Need to count the number of individuals who have PLEDGED FOR 2007 but have
NOT CONTRIBUTED SINCE AT LEAST 2004...EARLIER IF NECESSARY.

Example: If a person has a recorded pledge in cells G4:G766, fomula needs
to look back at all previous years and count all persons if their last
contribution was in 2004. If these person's last contributions was in 2003
and nothing since, they should also be counted. If their last contributions
were in 2002 and nothing since, they should be counted...if in 2001 and
nothing since, they should be counted. If any person's last contribution was
in 2005 or 2006, they should NOT be counted.

Also need a formula that SUMS all 2007 pledge dollars based upon this same
criteria.

Whew!

Any ideas?

JT


  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 340
Default Finding New Contributions

First formula should have *1 before last parenthesis.

Lori wrote:
Assuming all contributions in range are positive or blank try these:

=SUMPRODUCT((MMULT(--(A4:G7660),{1;1;1;1;-5;-5;5})5))

=SUMPRODUCT((MMULT(--(A4:G7660),{1;1;1;1;-5;-5;5})5)*G4:G766)


Jack Taylor wrote:
Is there a formula that will do the following:

Where...
A4:A766 contain contributions made in 2001 by individuals
B4:B766 contain contributions made in 2002 by individuals
C4:C766 contain contributions made in 2003 by individuals
D4:D766 contain contributions made in 2004 by individuals
E4:E766 contain contributions made in 2005 by individuals
F4:F766 contain contributions made in 2006 by individuals
G4:G766 contain pledges made for next year by individuals

Need to count the number of individuals who have PLEDGED FOR 2007 but have
NOT CONTRIBUTED SINCE AT LEAST 2004...EARLIER IF NECESSARY.

Example: If a person has a recorded pledge in cells G4:G766, fomula needs
to look back at all previous years and count all persons if their last
contribution was in 2004. If these person's last contributions was in 2003
and nothing since, they should also be counted. If their last contributions
were in 2002 and nothing since, they should be counted...if in 2001 and
nothing since, they should be counted. If any person's last contribution was
in 2005 or 2006, they should NOT be counted.

Also need a formula that SUMS all 2007 pledge dollars based upon this same
criteria.

Whew!

Any ideas?

JT


Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Finding a link source. Richard Buttrey Excel Worksheet Functions 5 October 12th 06 11:10 PM
Finding Asymptotes from a set of data in Excel WAYNEL Excel Worksheet Functions 1 January 7th 06 01:28 AM
Finding Asymptotes from a set of data in Excel WAYNEL Excel Discussion (Misc queries) 0 January 6th 06 10:48 PM
Help needed in finding specific series via row. hadmybreaktoday Excel Worksheet Functions 5 August 24th 05 06:13 PM
Finding Duplicate Names from Different Lists... PokerZan Excel Discussion (Misc queries) 1 July 8th 05 09:58 AM


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

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"