Fiz alterações no programa e deixou de funcionar. envio-lhe o meu ficheiro, veja o que estou a fazer mal por favor. Private Sub CommandButton1_Click() Dim iLin As Long Dim ws As Worksheet Set ws = Worksheets("registos") 'Determina a linha a ser escrita' lin = ws.Cells(Rows.Count, 1).End(xlUp).Offset(1, 0).Row 'Verifica se o código da peça é numérico' ' If Not (IsNumeric(Me.txtPeca)) Then 'MsgBox "Número de Peça incorrecto"' ' Me.txtPeca.SetFocus' 'Me refere-se ao formulário actual' 'Exit Sub 'End If ' 'Verifica se a descrição foi digitada' If Trim(Me.ComboBox1) = "" Then MsgBox "Informe a Obra/Habitação" Me.ComboBox1.SetFocus Exit Sub End If 'Verifica se a quantidade é numerica' If Not (IsNumeric(Me.txtlitros)) Then MsgBox "Quantidade Incorrecta" Me.txtlitros.SetFocus Exit Sub End If If Not (IsNumeric(Me.ComboBox2)) Then MsgBox "Nº Cisterna incorrecto" Me.ComboBox2.SetFocus Exit Sub End If 'Escreve os dados na tabela' ws.Cells(lin, 1).Value = Me.txtData.Value ws.Cells(lin, 2).Value = Me.ComboBox1.Value ws.Cells(lin, 3).Value = Me.txtlitros.Value ws.Cells(lin, 4).Value = Me.ComboBox2.Value 'ws.Cells(lin, 5).Value = Me.txtTotal.Value' ws.Columns("A:E").AutoFit 'Limpa as caixas de texto e direcciona o foco para txtData' Me.txtData.Value = "" Me.ComboBox1.Value = "" Me.ComboBox2.Value = "" Me.txtlitros.Value = "" Me.txtData.SetFocus End Sub Private Sub CommandButton2_Click() Me.txtData = "" Me.ComboBox1 = "" Me.txtlitros = "" Me.ComboBox2 = "" Me.txtData.SetFocus End Sub Private Sub CommandButton3_Click() Unload Me End Sub Private Sub txtData_Change() 'formata: dd/mm/yyyy If Len(txtData) = 2 Or Len(txtData) = 5 Then txtData.Text = txtData.Text & "/" End If End Sub Private Sub txtData_KeyPress(ByVal KeyAscii As MSForms.ReturnInteger) 'limita a quantidade de caracteres txtData.MaxLength = 10 'permitir que apenas os nºs seja digitados If KeyAscii < Asc("0") Or KeyAscii > Asc("9") Then KeyAscii = 0 End If End Sub Private Sub UserForm1_Initialize() txttotal.Text = Sheets("registos").Range("F2").Value End Sub Private Sub txtmedia_Exit(ByVal Cancel As MSForms.ReturnBoolean) txtmedia.Text = Sheets("consumosano").Range("b15").Value End Sub