Getting an Excel Worksheet's Row's Cell
This procedure finds a cell in a specific row
of a worksheet
that matches a given value, regex, or column label.
Syntax
Options & Inputs
One of the following options is required:
the value is "{value}"
, wherevalue
is the value of the cell you're targeting.the column label is "{label}"
, wherelabel
is the label of the cell you're targeting.the regular expression is "{regex}"
, whereregex
is a regex that matches the cell you're targeting.
Examples
Given the following table:
1
Movie
Year
Main Character
2
Iron Man
2008
Tony Stark
3
The Dark Knight
2008
Bruce Wayne
4
Black Panther
2018
T'Challa
5
Spider-Man: No Way Home
2021
Peter Parker
Here is how we would find cell Black Panther
in cell A4
:
1. Using the value is
2. Using the column label is
3. Using the regular expression is
Last updated
Was this helpful?