View Single Post
 
Old 04-22-2016, 06:53 PM
macropod's Avatar
macropod macropod is offline Windows 7 64bit Office 2010 32bit
Administrator
 
Join Date: Dec 2010
Location: Canberra, Australia
Posts: 22,467
macropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond repute
Default

There are various ways you could approach this problem. For example, in columns B & C you could have formulae like:
=IF(MOD(A11,14)=1,"Income Lori",IF(MOD(A11,14)=6,"Income Dave",""))
and:
=IF(MOD(A11,14)=1,800,IF(MOD(A11,14)=6,1000,""))
respectively, to generate the income projections. The formulae could be extended to incorporate debits, etc., too, but you need to consider how you'd want to handle the fairly common occurrence of multiple transactions occurring on the same date. Obviously, a formula can't insert extra rows for a date, so you'd probably need to allow for more than one to be handled in each column.

This would also be somewhat easier to manage if you had separate columns for debits and credits.
__________________
Cheers,
Paul Edstein
[Fmr MS MVP - Word]
Reply With Quote