Cell validations

Nikhil2803

New Member
Joined
Jul 18, 2023
Messages
34
Office Version
  1. 365
Platform
  1. Windows
I have a written a script in VBA. while checking a CheckBox, it should check if respective cells(D26,D27,D28) have numerical value or not. The below code is working if I am writing values under/or 10000. If I am giving some larger values, its not working. Please help me how to achieve this.

Function ab_chkbox_Click()
If Range("ab_indicator").Value = True And Range("D26").Value And Range("D27").Value And Range("D28").Value Then

Range("ab0indicator").Value = True
 

Excel Facts

Add Bullets to Range
Select range. Press Ctrl+1. On Number tab, choose Custom. Type Alt+7 then space then @ sign (using 7 on numeric keypad)
Try changing this part:
VBA Code:
Range("D26").Value And Range("D27").Value And Range("D28").Value
to this:
VBA Code:
IsNumeric(Range("D26")) And IsNumeric(Range("D27")) And IsNumeric(Range("D28"))

If that does not work, that tells me that at least one of those three values is actually entered as text and not as a valid number.
 
Upvote 0
Try changing this part:
VBA Code:
Range("D26").Value And Range("D27").Value And Range("D28").Value
to this:
VBA Code:
IsNumeric(Range("D26")) And IsNumeric(Range("D27")) And IsNumeric(Range("D28"))

If that does not work, that tells me that at least one of those three values is actually entered as text and not as a valid number.
Thanks for the input. This is working if any of the filed mentioned contains text value. It is not working if the cell is empty.
 
Upvote 0

Forum statistics

Threads
1,215,212
Messages
6,123,656
Members
449,114
Latest member
aides

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