gusbrunston
Programmer
I've looked, I really have! But keyword searches are pretty tough for me.
Query is select from the table "tblMasterJournal", which contains records of receipts and expenditures, including a "TransactionAmount" field.
I have a yes/no field to indicate if the record is a receipt or an expenditure ("ReceiptOrPayment"
In forms and reports, how can I change the sign (from $1,000.00 to -$1,000.00) if the record is a payment?
I've tried several versions of an expression such as:
Could use some help in the morning...I'm headed for bed.
Thanks in advance,
Gus Brunston
An old PICKer
padregus@home.com
Query is select from the table "tblMasterJournal", which contains records of receipts and expenditures, including a "TransactionAmount" field.
I have a yes/no field to indicate if the record is a receipt or an expenditure ("ReceiptOrPayment"
In forms and reports, how can I change the sign (from $1,000.00 to -$1,000.00) if the record is a payment?
I've tried several versions of an expression such as:
Code:
=IIF(IsNull([ReceiptOrPayment]),[TransactionAmount],[TransactionAmount]* -1)
Could use some help in the morning...I'm headed for bed.
Thanks in advance,
An old PICKer
padregus@home.com