How to select a specific cell in UITable?
    8 views (last 30 days)
  
       Show older comments
    
    piston_pim_offset
 on 4 Dec 2023
  
    
    
    
    
    Commented: piston_pim_offset
 on 5 Dec 2023
            There is an input and I want to get the other values in the row where this input is equal to one of the values in the first column of the UITable. 
I think l need something like:
idx = UITable.ColumnName.SerialNumber==3
Thanks for your help!
0 Comments
Accepted Answer
  Taylor
    
 on 4 Dec 2023
        [rows, ~] = find(value == UITable.Data)
UITable.Data(r,:)
7 Comments
  Walter Roberson
      
      
 on 5 Dec 2023
				Once you have done
uit = app.UITable.Data;
then what shows up for
uit.Properties.VariableNames
More Answers (0)
See Also
Categories
				Find more on Develop Apps Using App Designer in Help Center and File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!