|
This code snippet will exclude multiple transaction types from
a report.
Requirements
- Setup and using reports, transaction types
We have had customers wanting transaction reports to
exclude more than one Transaction Type. Previously this was not
possible, but it is now.
You can do the following for example:
@tr where ( @tr.ty != 101 ) where ( @tr.ty != 398 )
and it will exclude both types.
See Also
- Report Topics Index
|