Hello,
Is there a way to make this formula a bit more efficient? I'm trying to remove duplicates and remove blanks, but not sure how to do it. I have this basic formula which removes duplicates, but it leaves blank spaces, I think there's a way using IFFERROR, INDEX and ROW.
Here is a simple formula for removing duplicates which as shown on screen leaves blank spaces. Data are in the column A, formula below is in the column B.
I would like to achieve something like this:
Is there a way to make this formula a bit more efficient? I'm trying to remove duplicates and remove blanks, but not sure how to do it. I have this basic formula which removes duplicates, but it leaves blank spaces, I think there's a way using IFFERROR, INDEX and ROW.
Here is a simple formula for removing duplicates which as shown on screen leaves blank spaces. Data are in the column A, formula below is in the column B.
Code:
=IF(COUNTIF(A$1:A1,A1)=1,A1,"")
I would like to achieve something like this: