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

smallxyz

Active Member
Joined
Jul 27, 2015
Messages
392
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

Pivot Table Drill Down
Double-click any number in a pivot table to create a new report showing all detail rows that make up that number
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,214,814
Messages
6,121,711
Members
449,049
Latest member
THMarana

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