Feb 6, 2005 #1 cschnable Programmer May 24, 2001 36 US In a query is there a way to change a calculated amount form Negative to Positive - such as ($63,568.00) to $63,568.00 I actually want to append field totals to another table and when they are appended I want to reverse the + and - figures.
In a query is there a way to change a calculated amount form Negative to Positive - such as ($63,568.00) to $63,568.00 I actually want to append field totals to another table and when they are appended I want to reverse the + and - figures.
Feb 6, 2005 1 #2 PHV MIS Nov 8, 2002 53,708 FR Instead of: SELECT Sum(amount) As Total Try: SELECT -Sum(amount) As Total Hope This Helps, PH. Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ222-2244 Upvote 0 Downvote
Instead of: SELECT Sum(amount) As Total Try: SELECT -Sum(amount) As Total Hope This Helps, PH. Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ222-2244
Feb 6, 2005 Thread starter #3 cschnable Programmer May 24, 2001 36 US Thank you - it worked perfectly Upvote 0 Downvote