标签: excel vba userform
请帮助! 我想以用户形式显示TextBox1中单元格A1中的值。 只是无法获得正确的代码来完成此任务。 有什么想法吗?
答案 0 :(得分:0)
将此代码放在您的用户表单中
Private Sub UserForm_Initialize() 'Replace Textbox1 with the name of your userform TextBox1.Value = ActiveSheet.Range("A1").Value End Sub