Got the following question. More likely to be solved by VBA code but as I'm newcomer on VBA, I don't know how.
I have the following table
I'm putting the formula in the cell F2, see below, to figure out redundant values and ultimately, to remove them.
IF(COUNTIF(B2:E58,A2)>0,"YAHOO","Not Present")
My aim is to remove these redundant values automatically and not manually, by either deleting the cell or deleting the values inside.
I've checked on the internet and some solutions that came out, were talking about helpers columns or intermediate table, some others came out with VBA. I had look at the helpers column but I don't see how I can remove my values automatically through helpers columns.
Any suggestions are welcomed.
Thanks in advance.
Edited (1st take):
Thanks to Don Relentless for his help but I think my explanation is not clear enough.
Have: One column, A. Looking within that column A for values that exist when doing a search within an array , B2:E58.
Method/ Solution: Use IF(COUNTIF(B2:E58,A2)>0,"YAHOO","Not Present")
to spot the values within colmun A and also present in the array.
Example: For A2, check on B2 to E2 until E58. Next will be for A3 , check on B2 to E2 until E58.
Want: Remove the cell either within the array or in the column by either making them empty or put something like YAHOO
.
I hope I'm clear. If not give me a shout.