Hello,
I am attempting to disable a cell (data validation list) based on an entry of another cell (data validation list).
For example:
IN CEll H5 - If user selects 0 from the data validation drop down then CELL H6 becomes disabled (greyed out preferebaly) and it sends user to CELL H7 automatically
Previous POSTS (mumps posted the following in 2012, not sure if it can be leverged in any way)
Sub Test() ActiveSheet.Unprotect If Range("A1") = "Solicitud" Then Range("B1").Locked = False Else Range("B1").Locked = True End If ActiveSheet.ProtectEnd Sub</PRE>
Any help would be greatly appreciated.
I am attempting to disable a cell (data validation list) based on an entry of another cell (data validation list).
For example:
IN CEll H5 - If user selects 0 from the data validation drop down then CELL H6 becomes disabled (greyed out preferebaly) and it sends user to CELL H7 automatically
Previous POSTS (mumps posted the following in 2012, not sure if it can be leverged in any way)
Sub Test() ActiveSheet.Unprotect If Range("A1") = "Solicitud" Then Range("B1").Locked = False Else Range("B1").Locked = True End If ActiveSheet.ProtectEnd Sub</PRE>
Any help would be greatly appreciated.