Private Sub Copy_Click()
On Error GoTo EH
Application.ScreenUpdating = False
With Selection
.Offset(0, 0).Value = Format(TextBox1.Text, "R$ #,##0.00")
.Offset(1, 0).Value = Format(TextBox2.Text, "R$ #,##0.00")
.Offset(2, 0).Select
End With
Application.ScreenUpdating = True
TextBox3.Text = ""
Unload Me
Exit Sub
EH:
End Sub
Private Sub UserForm_Initialize()
TextBox1.Text = ""
TextBox2.Text = ""
TextBox3.Text = ""
Set Rng = ActiveCell
TextBox3.Text = Rng.Address
End Sub