Hello, im using CR11 and an ODBC connection into our OMS to put togther the following report:
ORDER1
Account TgtQty @TgtQty% ExecQty @ExecQty% @Diff
acctA 40 40% 40 40% False
acctB 40 40% 40 40% False
acctC 10 10% 10 40% False
acctD 10 10% 10 40% False
ORDER2
Account TgtQty @TgtQty% ExecQty @ExecQty% @Diff
acctA 40 40% 10 10% True
acctB 40 40% 40 40% False
acctC 10 10% 40 40% True
acctD 10 10% 10 10% False
Group1 is the order number, the account allocations are in the details section of the report.
@TgtQty% = TgtQty/OrderTgtQty
@ExecQty% = ExecQty/OrderExecQty
@Diff = (@TgtQty% = @ExecQty%)
I would like to suppress all orders (entire order) where there is no difference between the @TgtQty% and the @ExecQty% for all accounts (order 1 in my example above).
CR11 wont let me do a distinct count of @Diff or summarize that formula in any way. Any suggestions would be greatly appreciated.
Thank you
ORDER1
Account TgtQty @TgtQty% ExecQty @ExecQty% @Diff
acctA 40 40% 40 40% False
acctB 40 40% 40 40% False
acctC 10 10% 10 40% False
acctD 10 10% 10 40% False
ORDER2
Account TgtQty @TgtQty% ExecQty @ExecQty% @Diff
acctA 40 40% 10 10% True
acctB 40 40% 40 40% False
acctC 10 10% 40 40% True
acctD 10 10% 10 10% False
Group1 is the order number, the account allocations are in the details section of the report.
@TgtQty% = TgtQty/OrderTgtQty
@ExecQty% = ExecQty/OrderExecQty
@Diff = (@TgtQty% = @ExecQty%)
I would like to suppress all orders (entire order) where there is no difference between the @TgtQty% and the @ExecQty% for all accounts (order 1 in my example above).
CR11 wont let me do a distinct count of @Diff or summarize that formula in any way. Any suggestions would be greatly appreciated.
Thank you