I have 5 columns with email addresses. Each cell of each column contains 1 email address and the domains of the emails on each row don't repeat. I want to find only the emails containing "@gmail.com" and copy the value of that cell to a new column.
Using this can check only 1 column =IF(ISNUMBER(SEARCH("@gmail.com",T1)),T1,"")
I need it to check all 5 columns and return the value of the cell containing "@gmail.com"