hi there,
I have a report where i am displaying transaction details based on account number. Now if the transaction codes asscociated with that account number belongs to 7083 then i need to suppress the account number and all the transaction related to it along with the group header and footer. But along with 7083 transaction, if 9083 transaction is also there, we need to show the detail section and header and footer. and if there are more than one transaction of 7083 and 9083, based on which one is higher, i need to suppress or show the account number and its details. Well i was able to suppress the detail, group header and group footer, but the report total is not matching. This is what i did so far:
Created two different formulas to find the total number of transactions with 7083 n 9083.
if {Transaction Code} = "7083" then
formula = 1
else
formula = 0
end if
if {Transaction Code} = "9083" then
formula = 1
else
formula = 0
end if.
Then sum the above formula and used the below logic to suppress the detail, group header and group footer.
{@sum 7083} > {@sum 9083}
Now when i am doing the report total, the formula that i am using to suppress the detail section, i can't use the opposite of that like:
sum({@9083}) > sum({@7083})
any help regarding this would be greatly appreciated.
thanks
I have a report where i am displaying transaction details based on account number. Now if the transaction codes asscociated with that account number belongs to 7083 then i need to suppress the account number and all the transaction related to it along with the group header and footer. But along with 7083 transaction, if 9083 transaction is also there, we need to show the detail section and header and footer. and if there are more than one transaction of 7083 and 9083, based on which one is higher, i need to suppress or show the account number and its details. Well i was able to suppress the detail, group header and group footer, but the report total is not matching. This is what i did so far:
Created two different formulas to find the total number of transactions with 7083 n 9083.
if {Transaction Code} = "7083" then
formula = 1
else
formula = 0
end if
if {Transaction Code} = "9083" then
formula = 1
else
formula = 0
end if.
Then sum the above formula and used the below logic to suppress the detail, group header and group footer.
{@sum 7083} > {@sum 9083}
Now when i am doing the report total, the formula that i am using to suppress the detail section, i can't use the opposite of that like:
sum({@9083}) > sum({@7083})
any help regarding this would be greatly appreciated.
thanks