- Read the Excel file and store it in a variable named ‘excel_data’ as a table using ‘readtable’ function.
- Store the data from relevant columns (3 to 8) in a 2-D array named ‘rel_data’.
- Convert the data in your variable to a ‘1x6 Array’.
- Use the ‘ismember’ function to match the data with excel file and ‘find’ function to get the index.
- Using this index and the table, you can print the corresponding row.


