How do I add a continuous range say 5 to 16? Instead of adding 5 and 16 as below?
I tried "To" and ":" for the "," but didn't work out.
Sub oSum()
Dim n&, s As Double, TbRay As Variant
TbRay = Array(5, 16)
For n = 0 To UBound(TbRay)
s = s + Val (UserForm1.Controls("TextBox" &...