[VBA] Reference to commnadbutton's property without directly using its name

smallxyz

Active Member
Joined
Jul 27, 2015
Messages
393
Office Version
  1. 2021
Platform
  1. Windows
I have a around 10 cFmtCell commandbuttons on a userform.
Instead of repeating the following code for 10 times, with varying indices at the end, is there a more convenient way to write the code?



Code:
Private Sub [COLOR=#ff0000]cFmtCell7[/COLOR]_Click()
    Call FmtCellTxt([COLOR=#ff0000]cFmtCell7[/COLOR].BackColor, vbWhite)
    Unload Me
End Sub

Private Sub [COLOR=#FF0000]cFmtCell8[/COLOR]_Click()
    Call FmtCellTxt([COLOR=#FF0000]cFmtCell8[/COLOR].BackColor, vbWhite)
    Unload Me
End Sub

Private Sub [COLOR=#FF0000]cFmtCell9[/COLOR]_Click()
    Call FmtCellTxt([COLOR=#FF0000]cFmtCell9[/COLOR].BackColor, vbWhite)
    Unload Me
End Sub


Thanks a lot!
 

Excel Facts

Create a Pivot Table on a Map
If your data has zip codes, postal codes, or city names, select the data and use Insert, 3D Map. (Found to right of chart icons).
You can use a class module to handle multiple controls that do the same thing. You'll find numerous examples on the forum.
 
Upvote 0

Forum statistics

Threads
1,215,216
Messages
6,123,669
Members
449,114
Latest member
aides

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