Greetings,
I have a simple question but have not understood logic since I am a beginner when its comes to spreadsheets. My question is how do I copy rows based on a string criterion from one sheet to another?
For example in Sheet1 I have thousands of rows and column A contains different names. I now want to find all rows containing the word “Foo Bar” in Sheet1 and copy the rows to Sheet2. Problem is that Sheet1 will be regular updated and rows different.
I tried to use Filter and it works fine if I use “Copy results to” to paste the result in another Sheet. However this method is time consuming since I need to this all the time with different names.
How can I save filters?
Do I have to create a range first and then save it with a name and use in “advanced filters”? If so, how is this done?
I think I need to create a formula expression, with for example =match but how to assign the match to sheet1???
=MATCH("FOO BAR";$A1:$A3500)
Is this the most efficient way to use MATCH or are there any other ways?