This is related to a different question I asked about getting exact position on a sheet of a option box but I have made it a separate question in case it can be applied to other objects and therefore perhaps help others.
Admin please delete if you feel this question is not appropriate.
I have a macro that creates a option box on a worksheet and I have noticed that there is a range of numbers placed inbetween brackets.
Does anyone know what the numbers mean or do?
If i remove them so it looks like this
then run the macro it produces the VBA error argument not optional so the numbers must be doing something?
Admin please delete if you feel this question is not appropriate.
I have a macro that creates a option box on a worksheet and I have noticed that there is a range of numbers placed inbetween brackets.
Code:
ActiveSheet.OptionButtons.Add(131.25, 558.75, 38.25, 17.25).Select
Does anyone know what the numbers mean or do?
If i remove them so it looks like this
Code:
ActiveSheet.OptionButtons.Add().Select
then run the macro it produces the VBA error argument not optional so the numbers must be doing something?