Nikhil2803
New Member
- Joined
- Jul 18, 2023
- Messages
- 37
- Office Version
- 365
- Platform
- Windows
Hi Team, I have a checkbox (units of) that needs to be automatically enabled if users provides numeric values in D14,D15 and D16 cells.
I have written the below code in my worksheet, It is somehow working, but its throwing below error exception.
Your any valuable inputs will be highly appreciated. Thank you
I have written the below code in my worksheet, It is somehow working, but its throwing below error exception.
'Vol basic Life Unitodd checkbox'
If Not IsEmpty(Range("D14")) And Not IsEmpty(Range("D15")) And Not IsEmpty(Range("D16")) Then
Range("vbl_unitsof_indicator").Value = True
End If
Your any valuable inputs will be highly appreciated. Thank you