Ok So I have checkboxes I use in If statements thorughout my workbook and after adding one final it seems no matter what I do it will not recognize the value
I have declare the variable for the checkbox as normal
No matter what I do as long as this in in the code it skips the call and moves past wether the checkbox is true or false doesnt matter.
Any Ideas why? or how to resolve?
As I said I use this same thing on other checkboxes in my workbook and it works fine. So I am stumped.
I have declare the variable for the checkbox as normal
Code:
Dim RnFinalCB As CheckBox: Set RnFinalCB = Ws.Shapes("RnFinalCB").OLEFormat.Object
If RunFinalCB.Value = False Then
Call Prep
End If
No matter what I do as long as this in in the code it skips the call and moves past wether the checkbox is true or false doesnt matter.
Any Ideas why? or how to resolve?
As I said I use this same thing on other checkboxes in my workbook and it works fine. So I am stumped.
Last edited: