Oddly, google group's web interface keeps deleting my post. Censorship from the bots??
I think I was approaching this with a lack of doublebooking knowledge.The third account solution solves the bulk of my problem.
Indeed Dmitry it is in most cases, "more of the same".
No problem if this is unclear Simon; I should've spelled this out earlier.
Say I have the following CSV:
#,Effective Date,Transaction Description,Check Number,Amount
1,02/09/2018,HOMBNK CR,,-20.00
2,02/14/2018,HOMBNK CR,,-40.00
Assume that the first transaction comes from an external account I can export CSVs for but the second one does not.
Setting up the following rule would handle the case of the first transaction:
if
hombnk cr
account1 Transfers
However, it would incorrectly classify the second transaction.
I see this is a problem with the institution's CSV export.
Because of that, it seems a problem best resolved by a simple CSV munging tool or a users' custom scripts.
Preprocessing the second transaction's description to include meaningful text should resolve it nicely.
For example, the newly modified row and corresponding rule:
2,02/14/2018,my outlier,,-40.00
if
my outlier
account1 Income
Thanks again for the discussion Dmitry and Simon!