Hallo Excellers,
Graag uw hulp.
Graag uw hulp.
Code:
Option Explicit
Private Sub CommandButton1_Click()
Dim i As Long
ActiveWorkbook.Sheets("Invoer").Activate
Range("A3").Select
i = Cells(Rows.Count, "A").End(xlUp).Row
'3 OptionButtons in een Frame in een UserForm
If OptionButton1 = True Then
ActiveCell.Offset(0, 6).Value = "1"
ElseIf OptionButton2 = True Then
ActiveCell.Offset(0, 6).Value = "2"
ElseIf OptionButton3 = True Then
ActiveCell.Offset(0, 6).Value = "0"
End If
'volgende regel geeft Fout 1004
'Gewenst: Als Cells(0, 6) een 0,1 of 2 bevat
'dat deze naar beneden wordt doorgevoerd
'voor zover kolom A waarden bevat.
'Graag uw hulp bij de juiste syntax
Cells(0, 6).AutoFill _
Destination:=Range(Cells(i, 6))
End Sub