Formulas

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am trying to put in a formula that will subtract two columns... This will
be like balancing a checkbook... that type of column entries... Please help
me....
Thank you
 
Create a query, after selecting the table and all the fields to be displayed,
add another field

Balance: [Field1Name] - [Field2Name]

===========================
In SQL it will look like
Select TableName.* , [Field1Name] - [Field2Name] As Balance From TableName
 

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

Back
Top