Checkboxes in Excel

yogeshCR7

New Member
Joined
Mar 27, 2024
Messages
2
Office Version
  1. 365
  2. 2021
  3. 2019
  4. 2016
Platform
  1. Windows
Hello

I have two workbook PR & DB. I have few checkboxes in PR workbook.

My requirement is whenever a user clicks on any checkbox, the checkbox name should get reflected in workbook DB in a particular column. If the user unticks the checkbox, the value should disappear

I tried the following code but it didnt help
Set targetColumn = ws2.Range("A:A")
For Each checkbox In ws1.CheckBoxes
Dim checkboxName As String
checkboxName = checkbox.Name

Dim emptyCell As Range
Set emptyCell = targetColumn.Cells(targetColumn.Cells.Count).End(xlUp).Offset(1)

Next checkbox

Set targetWorksheet = Nothing
Set sourceWorksheet = Nothing
Set wb1 = Nothing
Set checkbox = Nothing
wb2.Save
 

Excel Facts

Can Excel fill bagel flavors?
You can teach Excel a new custom list. Type the list in cells, File, Options, Advanced, Edit Custom Lists, Import, OK
Hi Yogesh,

What is currently happening? "I tried the following code but it didnt help" -> what does it do? And can you please put it in code brackets so it's easier readable?:

Thanks,
Koen

VBA Code:
Set targetColumn = ws2.Range("A:A")
For Each checkbox In ws1.CheckBoxes
Dim checkboxName As String
checkboxName = checkbox.Name

Dim emptyCell As Range
Set emptyCell = targetColumn.Cells(targetColumn.Cells.Count).End(xlUp).Offset(1)

Next checkbox

Set targetWorksheet = Nothing
Set sourceWorksheet = Nothing
Set wb1 = Nothing
Set checkbox = Nothing
wb2.Save
 
Upvote 0

Forum statistics

Threads
1,215,465
Messages
6,124,975
Members
449,200
Latest member
Jamil ahmed

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top