ERRO 1004: Método Select da classe Range falhou.
Eu só queria salvar as informações adquiridas do teclado na planilha! Mas estou fazendo alguma burrada!
estou no desespero!! Quem puder ajudar, agradeço!
Segue o código:
Private Sub btsalvainfos_Click()
ActiveWorkbook.Worksheets("Plan1").Select
Selection.EntireRow.Insert
Plan1.Cells(3, 1) = Me.ComboBox1.Text
Plan1.Cells(3, 2) = Me.TextTAREFA.Text
Plan1.Cells(3, 3) = Me.TextRESP.Text
Plan1.Cells(3, 4) = Me.TextPRAZO.Text
Plan1.Cells(3, 5) = Me.TextDIF.Text
Plan1.Cells(3, 6) = Me.ComboBox2.Text
Me.ComboBox1 = Empty
Me.TextTAREFA = Empty
Me.TextRESP = Empty
Me.TextPRAZO = Empty
Me.TextDIF = Empty
Me.ComboBox2 = Empty
ComboBox1.SetFocus
End Sub