G
Guest
Hi
I'm trying to update my access data base from an Excel file. The Excel file
has few check boxes, when the user checks the check box in excel then the
Checkbox's caption should come to my opened data base. To receive this data,
in my form i've a text box.
Following is the code that I'm using in excel. when the CheckBox checked,
it's caption will show in Sheet1's B:11 Cell
I need this data(the one which shows in Cell B:11) in my access.
If CheckBox1.Value = 0 Then
Sheets("Sheet1").Range("B11").Value = ""
Else
Sheets("Sheet1").Range("B11").Value = CheckBox1.Caption
End If
Can any one help in this
Thanks
I'm trying to update my access data base from an Excel file. The Excel file
has few check boxes, when the user checks the check box in excel then the
Checkbox's caption should come to my opened data base. To receive this data,
in my form i've a text box.
Following is the code that I'm using in excel. when the CheckBox checked,
it's caption will show in Sheet1's B:11 Cell
I need this data(the one which shows in Cell B:11) in my access.
If CheckBox1.Value = 0 Then
Sheets("Sheet1").Range("B11").Value = ""
Else
Sheets("Sheet1").Range("B11").Value = CheckBox1.Caption
End If
Can any one help in this
Thanks