Tenho uma macro que inclui varias linha em uma planilha, porém eu preciso que alem disso a macro repita outro campo chamada "Bloco"
Private Sub Comando15_Click()
Dim db As Database
Dim rst As dAo.Recordset
Set db = CurrentDb()
Set rst = db.OpenRecordset("tbltexte")
For i = Me.Texto11 To Me.Texto13
rst.AddNew
rst![Chapas] = i
rst.Update
Next
rst.Close
Set rst = Nothing
Set db = Nothing
End Sub
Private Sub Comando15_Click()
Dim db As Database
Dim rst As dAo.Recordset
Set db = CurrentDb()
Set rst = db.OpenRecordset("tbltexte")
For i = Me.Texto11 To Me.Texto13
rst.AddNew
rst![Chapas] = i
rst.Update
Next
rst.Close
Set rst = Nothing
Set db = Nothing
End Sub