I have an SQL Query which lists records from a Table which contains Invoices and Credits.
The problem is that the Values are Positive for both Invoices and Credits - Just that the Document Type Shows which is which.
My problem is that I want to sum the Total Value by ADDING Invoice Vales and SUBTRACTING Credit values.

Is it possible to somehow change the Amount to be Negative in an SQL Statement (Based on a Column value containing the word "Credit")

This is my current query

Code:
Select [Territory] , [OBatch], [DDocType], [DDocNo], [DDocDate], [Account], [Company], [Value]  from [OrderArchiveIndex] ORDER BY [Territory] ASC , [Account] ASC
DDocType contains "Invoice" or "Credit"
Value contains a Positive Value always - would like this to become Negative if DDOCType = "Credit"

Thanks for any ideas

PS - Found the Code Tags - they dont seem to be part of "QUICK REPLY"