MATLAB: How to retrieve data from particular cell of uitable

cellguiuitable

I want to retrieve(or extract) data from particular cell of uitable.
Please help me in achieving the desired result with the code.

Best Answer

data_cell = get(handles.uitable1, 'Data'); %get current table
desired_result = data_cell{7,19}; %get value from particular place