Link to home
Start Free TrialLog in
Avatar of Cleohwinya
CleohwinyaFlag for South Africa

asked on

Implementing double entry system in access

I need to develop a database system with sql server 2000 on the back end and access 2003 on the front end.The nature of the system is such that you should capture a form twice (double entry) .One person should enter the form into the table and a different person should enter the same form into the same table and some checks are to be done to make sure all the entries by the 2 people do agree and if they are the same one is deleted so that one entry remains in the table.If there any different values in the fields the two forms are saved in the same table and later the forms can be opened to modify until all fields do agree for the 2 entries and one is deleted .Any help how i can implement this
Avatar of calpurnia
calpurnia
Flag of United Kingdom of Great Britain and Northern Ireland image

That's quite a broad question (especially for 50 points!) but the one thing I would suggest is that you DON'T go deleting records in your 'data entry' table; instead, I'd suggest copying 'validated' records across into a 'final data' table (and flagging them in the first table so you know they've been dealt with).
ASKER CERTIFIED SOLUTION
Avatar of Scott McDaniel (EE MVE )
Scott McDaniel (EE MVE )
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial