calculations in currency

G

Guest

I have these columns already created in a query as well as my main table.
What i am trying to accomplish is i have three fields that i need to add
together then subtract 350.00 to equal the fourth field. Basically so the
fourth field will auto calculate. Can anyone help?
 
G

Guest

Hi,
If what you want to do is to display the fourth field as (field1+field2 +
filed3) - 350, this is the SQL.

select Field1, Field2, Field3, (Field1 + Field2 + Field3) - 350 AS Field4
From TableWhatever;
 

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