excel 带有动态数字的命令按钮

pexxcrt2  于 2022-11-18  发布在  其他
关注(0)|答案(1)|浏览(97)

如何创建动态Commandbutton引用?即更改

MANAGER.CommandButton01.Caption = Sheets("DATA").Range("C" & Rows)

(这工作完美,但当然只在一个按钮上)-到,例如:

MANAGER.CommandButton("0" & (Rows - 2)).Caption = Sheets("DATA").Range("C" & Rows)

(this代码不起作用,但我一直在使用它)
以便根据使用MANAGER用户窗体编辑的代码行更新Commandbutton的标题。
行可以是两位数,所以“0”将不得不被替换为行11之后的行,但我还没有到那个阶段。

eyh26e7m

eyh26e7m1#

我想你要找的是对用户表单控件的引用。

MANAGER.Controls("CommandButton" & Format(Rows-2,"00")).Caption = Sheets("DATA").Range("C" & Rows)

相关问题