我很难在输入中插入一个输入之前的输入:
因为第一个输入是:你的名字是什么
Dim myValue As Variant
myValue = InputBox("insert the number", "Hello ***T3***")
Range("T4").Value = myValue
End Sub
T3是单元格数
你能帮助我吗?
答案 0 :(得分:1)
这是你正在寻找的吗?
myValue = InputBox("insert the number", "Hello " & Range("T3").Value)