Hello,
I am looking to take the rows from one sheet that have "x" in column 15 and output all of them in another sheet. the closest that I've gotten is:
=INDEX({Page 1 Range 1}, MATCH("X", {Page 2 Range 2}, 0), 1)
Which when placed in row 1 column 1 on Page 2, pulls the first matching result in row 1.
I have each column like so:
=INDEX({Page 1 Range 1}, MATCH("X", {Page 2 Range 2}, 0), 1)
=INDEX({Page 1 Range 1}, MATCH("X", {Page 2 Range 2}, 0), 2)
=INDEX({Page 1 Range 1}, MATCH("X", {Page 2 Range 2}, 0), 3)
etc...
in order to pull a full row into another page.
However, this only works for the first match for "X". Trying this in a different row outputs the same data.
I'm sure that there is a better way to do this. In excel, I would have used the FILTER function, but in Smartsheet that isn't an option. Any advice?