I need to build an expression that not only filters out the 9 in a column, but also the number 14. How do I build this expression to make it work for both 9 and 14. Currently it works just for 9. How do I make it work both numbers?
RegularPayment: IIf([tblPayments].[PaymentMethodID]<>9,[tblPayments].[PaymentAmount],Null)
RegularPayment: IIf([tblPayments].[PaymentMethodID]<>9,[tblPayments].[PaymentAmount],Null)