Hi Guys,

Im having a little bit of a hurdle to overcome today. I am fairly new to VBA code and macros so Im trying my best to learn.
What I would like to do is:

I have a sheet that will contain contact data of people that i add using a form I created. This form has labels and textboxes that are linked to the sheet and cells and with every click on the "add client" button on the form the data or text in the textboxes gets added to the respective cells using the "RowCounter = Rowcounter + 1" code. My obstacle for today is that I also have checkboxes on this form which I want to,if ticked or Value True, show this on the checkboxes on the sheet.

im currently at this point of the code and having a mental block

Private Sub ChbxEnquiry_Click()
    If ChbxEnquiry.Value = True Then
        CheckBox1.Value = True
        Else
        CheckBox1.Value = False
        End If
End Sub
if anyone could help, i would greatly appreicate this.

cheers