Or is this just a particularly difficult task to complete?
For me, it's mainly a matter of not seeing your thread before. For the other 50 or so viewers, it could be that they don't know how to sum text, which is what your post title suggests you are trying to do. That is a bit more difficult. However, I'm going to assume "txt Field" means textbox, since many people use the words 'field' and 'control' interchangeably.
I suggest a textbox control, locked true, enabled false, txtInputAcres beside txtActualAcres. It would have an expression that subtracts the DSum of the subform records for the acreage field from txtInputAcres, showing the balance. In case the user ignores the hint on the remaining acreage, in the form BeforeUpdate event, subtract the same DSum of txtActualAcres from txtInputAcres and cancel the update if the number is negative.
If your acreage is in fact text, you'll need the IsNumeric function to ensure the entry resembles a number, then convert it to a number (CInt or CLng for example) then do the addition. Having to convert means your tables are not set up correctly, IMO.
Last edited by Micron; 06-21-2016 at 10:07 AM.
Reason: clarification
The more we hear silence, the more we begin to think about our value in this universe.
Paraphrase of Professor Brian Cox.