如何从Userfrom获取输入数据(ID)并从Sheet 1获取值到Sheet 2?我找到了这个链接http://www.excel-easy.com/vba/examples/interactive-userform.html,但只能在单页中使用。
表1的例子
我需要的价值是:
(表1)中的A列到(表2)中的C3列
(表1)中的B列到(表2)中的E8列
从(表1)到(表2)中的G3列的C列
感谢您的帮助
答案 0 :(得分:0)
答案 1 :(得分:0)
在您的链接中,他们使用如下构造:
Cells("coordinates here").Value = your_values
在此上下文中等于
Sheets("Sheet1").Cells("coordinates here").Value = your_values
所以你应该像这样输出:
Sheets("Sheet2").Cells("coordinates here").Value = your output