Check Box or Data Validation Error Message based on a formula

bnichols

New Member
Joined
Dec 28, 2022
Messages
14
Office Version
  1. 365
Platform
  1. MacOS
Hello, trying to get a data validation, or more specifically, a warning message (and a stop message) based on another cells value once the check box is selected. The only way it will work is if the cell is edited, which is how data validation works but I'm trying to automate, VBA would be useful also. Essentially, im trying to have an "is this done" check list and once the box is checked, it will verify, for example, a certain row of cells contains entered numbers and if they don't, the user can proceed to the next section of the sheet.


View attachment 81649
 
It should have picked up with .Columns(8), but wouldn't in .Columns(9). You could test using .Cells. For example, if your sample is in H24:I24 (either centered across selection or merged), you could test with something like the below to see if the correct string is returned.

VBA Code:
Sub testmerge()

MsgBox ActiveSheet.Cells(24, 8).Value

End Sub
I dont know where im messing it up, the test code showed the correct column 8 and in a test sheet, it works without issue. There's something on the sheet causing the 400 error to keep popping up. I added it to a google drive if you wanted to take a look, otherwise, I appreciate the help to this point.

 
Upvote 0

Excel Facts

Pivot Table Drill Down
Double-click any number in a pivot table to create a new report showing all detail rows that make up that number
It should have picked up with .Columns(8), but wouldn't in .Columns(9). You could test using .Cells. For example, if your sample is in H24:I24 (either centered across selection or merged), you could test with something like the below to see if the correct string is returned.

VBA Code:
Sub testmerge()

MsgBox ActiveSheet.Cells(24, 8).Value

End Sub
I knew what the solution would be all along, and it's that im an idiot. Im still learning, and this is the first time I've messed with checkboxes. I've made the false assumption that check box name referred to either the name of the checkbox (written text) or the Alt text name. I realize now that there is a third way of labeling it once its clicked in the upper lefthand corner. 3 ways of naming a check box is a bit much if you ask me. All that said your original suggested code works without issues as im sure you suspected. I had an additional question, is there a certain code that could be added to a macro that hides/unhides cells, like if check box 1,2,3 etc are clicked then unhide rows 1 -5, otherwise message.
 
Upvote 0
For anyone that stumbles upon this thread for answers, after a lot of trial and error, I realized that VBA wasn't picking up true/false statements for the checkboxes; instead, for checked box use 1 (true) for unchecked box use -4146 (false). Im not sure if this is mac related but while running the step in tool, i came to this realization.
 
Upvote 0

Forum statistics

Threads
1,214,907
Messages
6,122,183
Members
449,071
Latest member
cdnMech

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