Find Row
Find the row of excel sheet.
Last updated
Find the row of excel sheet.
Last updated
Find the row of the excel sheet by searching the cell value row wise and stores it in a variable.
Input : A variable name that references the opened excel file handle.
Sheet Name : The name of the sheet in which the cell value is to be found.
Cell Value : The cell value to be found.\
Column Name : Optional
The name of the column in which the cell value is to be found. If it not specified, the entire row will be searched.\
Index : Optional
The index of the row to be found. It is only valid when the method is At Index.\
Method :
First
- Search the first occurrence of cell content.
AtIndex
- Search the cell content in specified index.
All
- Search the all cell content.
\
The variable that stores the true value if specified cell value found in the excel sheet otherwise store false.
Data Row: The variable that stores the data row or list of data row of specified cell value found in the excel sheet.
Found :