View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
merjet merjet is offline
external usenet poster
 
Posts: 812
Default Triggering a macro to run by changing a radio button

In the UserForm's code module:

Private Sub OptionButton1_Click()
Application.Run "Show_Rates"
End Sub

Hth,
Merjet