google sheets filter rows above current cell

Solutions on MaxInterview for google sheets filter rows above current cell by the best coders in the world

showing results for - "google sheets filter rows above current cell"
Nicola
13 Jan 2017
1-- Google Sheets: Filter rows above current cell
2=filter(
3  indirect("R2C3:R" & row()-1 & "C3", false),
4  indirect("R2C3:R" & row()-1 & "C3", false) = "Search Word"
5)
6  
7-- Note: Use must use R1C1 notation, not the A1 notation
similar questions