Greetings all:
I have a query like:
WasCost and IsCost are both set to Currency in myTable. If the myDifference comes out negative, it looks like ($100.00). User requests that it display as -$100.00 instead.
I believe one can change the currency formatting in the table, but the Microsoft article on Formatting says the stored value for negative numbers is -$X.XX andthe display is ($X.XX). Also, since this is a calculated field, if I could make it work in the tables, would the query translate accordingly?
I have a query like:
Code:
"Select myTable.WasCost
, myTable.IsCost
, [WasCost]-[IsCost]
AS myDifference
FROM myTable;"
I believe one can change the currency formatting in the table, but the Microsoft article on Formatting says the stored value for negative numbers is -$X.XX andthe display is ($X.XX). Also, since this is a calculated field, if I could make it work in the tables, would the query translate accordingly?
Comment