Hi,
if have 4 different report expressions in a report
Report Expression Name
|
Expression
|
BeginBalanceFunctional |
Format([GL Detail Report.BeginBalanceFunc],'##,###,###.00') |
EndBalanceFunctional |
Format([GL Detail Report.EndBalanceFunc],'##,###,###.00') |
BeginBalance |
Format([GL Detail Report.BeginBalance],'###,###,###.00') |
EndBalance |
Format([GL Detail Report.EndBalance],'###,###,###.00') |
If i wanted to compare the two Begin Balances to see if they are equal in another filter (so that way it will only show those that are equal)
is the only way to accomplish to do another report expression where
format([GL Detail Report.BeginBalanceFunc],'##,###,###.00') = Format([GL Detail Report.BeginBalance],'###,###,###.00')
and then filter that by a true or false
(i.e. isn't there a way to filter just by the report expression name....maybe i am just missing something obvious while trying to learn myself
)