I've partially resolved this myself with placing this code in the Workbook_Open Object Code File:
It remedied the user permission to highlight the selected unlocked cells and to reinstate same permissions upon Save - Close - ReOpen, BUT, I've lost keyboard cell selection functions on the main sheet only. I must have a conflict on this main sheet somewhere. Time to dig into it.
If anyone has any known or assumed conditions that can cause this I would appreciate any suggestions.
For Each sh In ActiveWorkbook.Worksheets
sh.EnableSelection = xlUnlockedCells
sh.Protect 'sans pword
Next sh
Bookmarks