A family of Microsoft word processing software products for creating web, email, and print documents.
You appear to be wanting to calculate sub-totals for "Hard" and "Soft" skills so you need to identify which dropdowns contribute to each of those categories. For that, you could use the Tag of each dropdown control.
Then, you would need to use the
Private Sub Document_ContentControlOnExit(ByVal ContentControl As ContentControl, Cancel As Boolean)
End Sub
in the ThisDocument module to tally the total of the values of each Content Control by its Tag ID.
See the following and other pages on Greg Maxey's website for more on Content Controls