I have an excel sheet from which I need to fetch the rows based on the cell value of a particular column. For example I have a column named city and employee_name. I will be providing city value using my Java code and it should fetch all the rows which have that city value in a specified column. Column name will be fixed.
Example:
City Employee_Name Age
Vegas Tom 23
Vegas Ron 43
Vegas Sam 19
Delhi Rohit 32
Delhi Ram 28
Jaipur Ankit 31
So, if I give the cell value as Vegas from my Java code so it should fetch me the row 1,2 & 3.