I have switched from MS Access to Open Office Base because, literally I am just tired of Microsoft - And I am an IT engineer.
I have some Access DBs to recreate but need to do calculations and have those results stored in a field in the same table. To this end I created a test DB to learn.
I have learned from this site: viewtopic.php?t=64657 how to create a query that does the calculations so "step in the right direction".
Where I'm at now: It looks like (details to follow) that in making this work I will have 2 tables both the same size (and the record count can get pretty large); 1 table which a form accesses in order to enter data and a 2nd table which a query fills out with all the data from the first table plus the results. This seems redundant and I hope someone can help me actually put the results of calculations into the 1st table.
My Details:
I created Table1
PK = "ID" integer which is autovalue
value1, integer, user will enter a number in this field
value2, integer, user will enter a 2nd number in this field
answer, integer, results should be put in this field

Query:
qryAdd, This query adds value1 and value2 from Table1: SELECT "ID", "value1", "value2", "value1" + "value2" FROM "Table1"
I did a Create as View to a table called Table2
Anyone know how I can stretch this to make the full table on top visible?


Table2 info:
ID - integer, no PK, no autovalue
value1 - integer
value2 - integer
COL_4 - BigInt

Query2, This query gathers all the fields from Table1 and Table2 and places the calculated answer in the COL_4 of Table2


This is my form. Even though the calculations are correct you will see that for each record it shows the answer to calculations of the first record. Don't worry about this, I'm confident I can fix it.



I hope I gave enough information and I hope I posted in the correct forum - It's difficult to choose sometimes
Anxiously awaiting responses, Thanks
Mike