I have a Google Docs spreadsheet, where I store rss feeds (in Sheet1). What I would like to do is to create formula, which will, in Sheet2, copy and display all feeds from Sheet1, which contains certain words. To be more clear, I prepared a screen shot of an example. In this example I would like to copy and display (from Sheet1 to Sheet2) all feeds with the words BLACK and SHIRT, and from here on I would like to auto copy and display feed, every time it will contain this two words. Is this possible and how? Thank you for your help!
相关问题
- Split Lines and Bold Text within a ui.alert Window
- Pass an array of JSON objects from Google Sheets t
- Return cell content based on max value of other co
- Token invalid - Invalid token: Cannot parse referr
- Installing Wine on Mac OS Catalina. Error: No avai
相关文章
- How to allow access for importrange function via a
- Google app script trigger not working
- Set Date/Time to 00:00:00
- indexOf returning -1 despite object being in the a
- Using MIN() inside ARRAYFORMULA()
- How can my Google Apps Script be run by others the
- Google Spreadsheet COUNTIF formula equivalent with
- In Google Sheets how to reference infinite rows in
To return rows that contain the string 'black shirt':
=QUERY(Sheet1!B:B;"select * where B contains 'black shirt'";1)
To return rows that contain any complete words listed in C2:C:
=FILTER(Sheet1!B2:B;MMULT(SEARCH(TRANSPOSE(" "&C2:C&" ");" "&Sheet1!B2:B&" ");SIGN(ROW(Sheet1!B2:B))))
QUERY documentation
FILTER documentation
Example spreadsheet