inputBox插入一个输入框之前

时间:2018-02-07 11:56:20

标签: excel vba excel-vba inputbox

我很难在输入中插入一个输入之前的输入:

因为第一个输入是:你的名字是什么

Dim myValue As Variant

myValue = InputBox("insert the number", "Hello ***T3***")

Range("T4").Value = myValue

End Sub

T3是单元格数

你能帮助我吗?

1 个答案:

答案 0 :(得分:1)

这是你正在寻找的吗?

myValue = InputBox("insert the number", "Hello " & Range("T3").Value)