putting things into the right columns depending on their value

G

Guest

Merry christmas everyone,

To make things just a little bit more merrier for me i would really
appreciate some help with this one!
I have a Union query as shown below, this paragraph pulls up cheque payment
and puts them into the credit column (as they are being paid into our
company), a charge would go into the debt column:

<!---
SELECT cheque.datebanked AS [Bank/Receipt Date], "Cheque Payment" AS
[Charge Type], cheque.Amount AS Amount, Receipt.ReceiptNo,iif( false,
CCur(0), Null ) As Debt, iif(false, CCur(0), cheque.Amount) AS Credit,
Receipt.Student AS StudentReference
FROM Receipt INNER JOIN cheque ON Receipt.ReceiptNo = cheque.ReceiptNo
WHERE ((Receipt.Student)=[studentName])
---!>

but if we refund a cheque then this is also stored in the same table as we
pay a cheque back with a negative amount to the original cheque.
How can i show that refunds are in the debits column and normal cheques are
in the credit column?

with much thanks

Amit
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top