Hi GrnEyz!<br>
<br>
If it's just the math you need help with, then try this:<br>
<br>
if option1 then<br>
total = 100<br>
else if option2 then<br>
total = 120<br>
end if<br>
if check1 = vbChecked then<br>
total = total * 0.90<br>
end if<br>
<br>
<br>
Like wallyw said, you should put all option buttons that are related in their own frame. Make sure the frame actually "owns" the option buttons by doing a "cut" on the option button, selecting the frame, then doing a "paste", which will insert the option button into the frame. Repeat for the other option button. What this does is tell Windows that these option buttons should be grouped together, so that once a user uses the tab key to get to one of them, they can use the arrow key to select different ones.<br>
<br>
Chip H.<br>