我有一个为宏提供数据的用户表单。完成此宏后,我想使用一个按钮将在用户窗体中输入的值粘贴到单元格中。我读过不能卸载用户窗体,我不认为我会像使用代码那样关闭用户窗体:
userform1.hide
userform2.show
然后关闭两个用户窗体,我使用代码:
userform2.hide
此外,当我打开用户窗体时,请备份我输入的值。
我用来尝试从文本框中打印值的代码是:
Sub copypaste2()
'code to copy and paste a graph and some text, using the macro recorder
ActiveSheet.ChartObjects("Chart 1").Activate
ActiveSheet.ChartObjects("Chart 1").Activate
ActiveChart.ChartArea.Copy
Sheets("Sheet1").Select
ActiveSheet.Pictures.Paste.Select
Sheets("sheet2").Select
Range("B7:G9").Select
Selection.Copy
Sheets("Sheet1").Select
Range("M5").Select
ActiveSheet.Paste
Range("K6").Select
'code to paste value from userform textbox to cell
Worksheets("sheet1").Range("M8").Value = UserForm1.baseflowtextbox.Value
end sub