second column

ewart

Registered User.
Local time
Today, 22:46
Joined
May 22, 2002
Messages
10
How to create a second amount column in access?

Thanks
 
Not sure what you are trying to do or where you want to do it. Some more detail might help
 
In order to understand your question:

can you be more specific?

RV
 
I have a database with these headers: account, sbu, agn and amounts. The amount column consist of both debits and credits. The reason I wanted to create a new column is so I can run a query to match debits and credits with these criteria's, same account #/ same sbu#/ same agn #.
 
You should split up your table into two tables.
One table containing the accounts, one table containing account transactions.

Apart from this, the reason why you want to add an extra column is not valid.

You can use this basic query though for now:

SELECT Amount
FROM YourTable, YourTable AS YourTable_1
WHERE YourTable.account=YourTable_1.account
AND YourTable.sbu=YourTable_1.sbu
AND YourTable.agn=YourTable_1.agn;

being YourTable the name of your database table.

RV
 

Users who are viewing this thread

Back
Top Bottom