Clear button for an Order form that needs to refer to two different Sheets

Excel_User_10k

Board Regular
Joined
Jun 25, 2022
Messages
98
Office Version
  1. 2021
Platform
  1. Windows
I am trying to create a Clear/Reset button for an Order Form Sheet. It includes several Radio Button Group selections which reference cells on another Sheet so I need to refer to those cells in this Clear Button too in order to reset them to a default as well.

So far I have:

VBA Code:
Sub RectangleRoundedCorners3_Click()

    Dim Sheet1 As Worksheet, Sheet2 As Worksheet

    Set Sheet1 = Sheets("Submit Sale")
    Set Sheet2 = Sheets("Products_Dec")

   [COLOR=rgb(44, 130, 201)] [/COLOR][COLOR=rgb(0, 0, 0)]Sheet1.Cells(6, 6).Value = ""[/COLOR]
    Sheet1.Cells(6, 13).Value = ""
    Sheet1.Cells(6, 18).Value = ""
    Sheet1.Cells(8, 18).Value = ""
    Sheet1.Cells(10, 18).Value = ""
    Sheet2.Cells(13, 3).Value = ""
    Sheet2.Cells(13, 6).Value = ""
    Sheet2.Cells(13, 7).Value = ""
    Sheet2.Cells(13, 8).Value = 1
    Sheet2.Cells(13, 9).Value = 1
    Sheet2.Cells(13, 10).Value = 1
    Sheet2.Cells(13, 11).Value = ""
End Sub

However, it only works with the first line for Cell Value change and not the rest. Not sure why?

I also have 2 drop down boxes. Is it possible to include a reset to these where it defaults back to "Select..."?

Thank You.
 

Excel Facts

Save Often
If you start asking yourself if now is a good time to save your Excel workbook, the answer is Yes

Forum statistics

Threads
1,215,051
Messages
6,122,871
Members
449,097
Latest member
dbomb1414

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top