First, you should not use "year" as a field name, because it's a reserved word. CYear would work.
Second, the value you're suggesting for the Difference field is a calculated value. Standard practice is to avoid storing calculated values in tables. They are better obtained by using a query.
Code:
SELECT CAsset - CLiabilities As Difference
FROM myTable
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.