Attempting to craft a saved search to show me all ...
# general
d
Attempting to craft a saved search to show me all entries where there are only two lines, and the accounts on both lines are bank accounts. This isn't remotely possible, is it, what with all lines on JEs being main line?
e
A Saved Search for Journal Entries, where the JE has only a single credit/debit pair, both bank accounts?
d
correct
this is what i have so far, but it's only partially there:
e
Interesting
Tricky... I would create a Saved Search with Account Type : Bank And Results : Summary > Document Number : Group Account : Count Then filter in Excel the ones with Account : Count = 2 Not sure if there are false positives
d
Hmmm, not sure if it will totally do the trick since I also have to do some additional filtering on the Memo field, but I like where your head is at. Thanks.
m
Don’t filter by account type of bank
Leave all accounts and use a formula numeric. CASE WHEN account.type = ‘Bank’ THEN 1 ELSE 0 END Then group by journal # and sum the formula
Also do a formula numeric to count the lines. So you’d have 2 columns 1 for number of lines with bank accounts and 1 for total number of lines
d
Thank you - this is pretty much what I'm going for. Can I add a similar case when statement to the criteria? I basically just want to limit to case when count of line sequence number = 2.