Actually, the cells were not named at all in my post, the FormFields are named. And yes, they are named using the Properties of the FormFields (right click, then Properties).
You can name the last formfield in the column whatever you like. Yoy can name it "bob" if you want. It does not matter. It does not matter what you name the other formfields either, it is simply a good idea to explicitly name things.
So.
1. You have formfields in the cells. Because you are using formfields, and logic between them, the fact that they are in cells in a table is completely irrelevant. The table, in this case is ONLY a visual construct. You could have these formfields scattered anywhere in the document, and the logic - and the result - will be the same. They are simply named bookmark ranges really.
2. The formfields are named - right click them, select Properties, and in the Bookmark field, type in a name.
3. Put the sub routine in a code module. This can be the standard ThisDocument, or create a new one (In the Visual Basic Editor Insert > Module)
4. The sub routine can be named UpdateLastRow if you want - again, it does not matter. You can name it George, just as long as you select George as the macro to run OnExit.
5. You must have the sub written already to be able to select it from the list of OnExit macros. These are, as you figured out, selected from right clicking the formfield, and selecting from the dropdown list of OnExit macros.
6. I had it that ALL of the formfields run the OnExit macro. That way, the final formfield always updates everything. You could do it that only the last one (before the total) runs the update routine. Frankly though, you may as well make it run from all of them.
7. Lastly, and most important. You MUST protect the document for forms so the formfields will function correctly. Tools > Protect Document, then select Forms. If you have multiple sections, make sure the sections with the formfields is protected. if you want to be able to edit in other places, make sure those places are NOT protected. use Continuous Section breaks to separate the areas that need protecting, from those that do not need protecting.
As a final note. you can make the shaded aspect of formfields go away, so that they results, the contents, look just like any other text around them. Use View > Toolbars > Forms to display the Forms toolbar. There is a button (usually the third from the right) for Form Field Shading. It is a toggle. Toggled to OFF, the contents of the formfields look like any other text. You can apply Character Styles to them, or format them as muchas you like etc etc.
Gerry