I am not having much success. I have part of it working. so far I have:
Set Target = ActiveCell
Set a = Range("e12")
Set b = Range("f12")
Set aa = Range("o29")
Set ab = Range("p29")
If aa = 3 And Intersect(Target, a) Is Nothing Then Exit Sub
Cancel = True
idc4_pick
If ab = 3 And Intersect(Target, b) Is Nothing Then Exit Sub
Cancel = True
idc5_pick
o29,p29 are cell reference for selected pull down list item.
18 possible pull down references.
the e12,f12 cells correlate to the pull down lists.
If the user double clicks e12 macro executes. if f12 is double clicked cell goes into edit mode.
I am missing something. Any ideas?
Any input would be greatly appreciated.
Set Target = ActiveCell
Set a = Range("e12")
Set b = Range("f12")
Set aa = Range("o29")
Set ab = Range("p29")
If aa = 3 And Intersect(Target, a) Is Nothing Then Exit Sub
Cancel = True
idc4_pick
If ab = 3 And Intersect(Target, b) Is Nothing Then Exit Sub
Cancel = True
idc5_pick
o29,p29 are cell reference for selected pull down list item.
18 possible pull down references.
the e12,f12 cells correlate to the pull down lists.
If the user double clicks e12 macro executes. if f12 is double clicked cell goes into edit mode.
I am missing something. Any ideas?
Any input would be greatly appreciated.