Below is the finishing solution. Let me know if this helps. @Drrickryp @TheRobRush
The way it should work for the nurses is they will start selecting Yes, No, NA, or Other. When they select "Other" it will prompt them with a combo box with the following (25%,50%, 75%) and that should start the scoring.
I have a table for the radio button.
Table({Item:"Yes", Value:100},{Item:"No", Value:0},{Item:"N/A"},{Item:"Other"})
For the Gallery I have the following formula that I added to each of the Category score sections (Chronic, TCM-TOC, Acute, Health Maintenance). TextInput2 is where I keep score from the radio button chosen. It is hidden for now.
Text(Sum(Gallery1.AllItems,TextInput2)/CountRows(Gallery1.AllItems)*100,"#%")
TextInput2
If(Radio1.Selected.Item="Other",Combox`.Selected.Rating,Radio1.Selected.Value & "%")
For the Category, Weighted and Cumulative score they are all Text Input control (Display Mode: View)


Please let me know if you need additional information. My apologies again. It was supposed to go live today. Stuck with the scoring.