'Remove unverified emails from google sheet

so I have a spreadsheet with name, email and phone number now I'm using another service to verify those emails but the problem is that the software is returning valid emails and now I wanna remove the rows which don't have valid emails how can I achieve that. As the email verifier is only giving me valid emails and I want to remove the rows which don't have valid emails.

Here's an explainer video on what's the issue I'm facing. https://www.loom.com/share/33c1a5b271044b32816060163f86c162



Solution 1:[1]

with a few steps, yes.

  • let's say your data is on Sheet1
  • paste your verified emails in Sheet2 column A
  • create Sheet3 and use this formula:

=FILTER(Sheet1!A:Z, COUNTIF(Sheet2!A:A, Sheet1!F:F))

enter image description here

  • next, select all the data on Sheet3
  • press CTRL + C
  • and right after that press CTRL + SHIFT + V

demo sheet

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 player0