如何 return 来自用户表单的公式

how to return a formula from user form

我正在尝试使用 commandbotton1 将 Textbox1 X Textbox2 中的值相乘,例如,如果 Textbox1 = 3 和 TextBox2 = 2.5 我希望将 textBox3 中的结果视为包含 TextBox1&2 =3x2.5 值的公式 我不想看到结果为值 7

私人订阅 CommandButton1_Click() Me.TextBox3 = Me.TextBox1 * Me.TextBox2

结束子

像这样?

Private Sub CommandButton1_Click()
  With Me
    .TextBox3.Value = "=" & .TextBox1.Value & " * " & .TextBox2.Value
  End With
End Sub