Im debating the best way to determine whether the strings in numerous cells of one column can be compared with strings in another column.
Column A has cells with strings that contain many blank characters
Column B has basically those same string but without the blank characters
For example:
A B
a b c abc
def ghi defghi
Now it seems there is no function to make such a comparison but what should i do without affecting column A.
Should i temporarily make a copy of column A, apply the substitute function to get rid of the blanks, and then compare. Should I store each range of column A in some sort of data structure and then compare the values of column B with each element of that data structure.
Basically what does anybody recommend I do so that i can efficiently compare and match those 2 columns. Thanks a million!
Column A has cells with strings that contain many blank characters
Column B has basically those same string but without the blank characters
For example:
A B
a b c abc
def ghi defghi
Now it seems there is no function to make such a comparison but what should i do without affecting column A.
Should i temporarily make a copy of column A, apply the substitute function to get rid of the blanks, and then compare. Should I store each range of column A in some sort of data structure and then compare the values of column B with each element of that data structure.
Basically what does anybody recommend I do so that i can efficiently compare and match those 2 columns. Thanks a million!