MATLAB: Can i control Pop up menu depending on other pop up menu drop down

guiMATLABmatlab guipop up menu

Hello all,
I have two pop up menus namely pop1 and pop 2 with selections 1,2,3 each respectively. is it possible to implement like if i select 1 in pop1 automatically even in pop2 1 should be selected.

Best Answer

Yes.
function Pop1_Callback(hObject, eventdata, handles)
if isequal(hObject.Value, 1)
handles.Pop2.Value = 1;
end