On Dec 28, 2010, at 4:27 PM, Zack Williams wrote: > For example, if I wanted an automatic transaction that would put 10% > of each paycheck into savings, but only if the paycheck was for more > than $500, I attempted the following: > > -- > = /Employer:Payroll/?a>500:0
Since automated expression predicates now follow report query syntax, you need this: = expr account =~ /Employer:Payroll/ and amount > 500 Let me know if that works for you. John
