ใช้อันนี้แทน แต่ต้องกด Enter หลังจากใส่สูตรทุกครั้ง
Private Sub Output_KeyDown(KeyCode As Integer, Shift As Integer)
On Error GoTo Output_Err:
Dim myValue As Variant
If KeyCode = vbKeyReturn Then
myValue = Eval(Me.Output.Text)
Me.Output = myValue
End If
Output_Err:
'bypass error
End Sub