Option Box

H

harksteve

I am quite new to visual basic. I have created an option box. How can
tell it to print a number say "53" into cell B6 when I click on it?

thanks in advanc
 
T

Troubled User

In the click event in VB you would put something like:

range("b6").value = 53
 
Top