I need to show group footer records only if there are two In transfers and two Out transfers in a month for the same account. I have logic that says
if Trans.type in [ "AZ", "DR"...] then In and if trans.type in {"AT", "FH"...] then Out
I hope someone can help with what the logic should be to
1) be sure to print only when two of each occur for the same account
2) keep me from having a count that starts with the first record and keeps growing from there.
if Trans.type in [ "AZ", "DR"...] then In and if trans.type in {"AT", "FH"...] then Out
I hope someone can help with what the logic should be to
1) be sure to print only when two of each occur for the same account
2) keep me from having a count that starts with the first record and keeps growing from there.