I have below excel columns for string comparison. I have used contains but not able to filter. because if string has comma, period is acceptable but using contains its going to else condition. Can any one help me on this.
Below is the sample data
UR_ACCT_NAME
DNB_NAME
Timbercreek Equipment Co, LLC
Timbercreek Equipment Co LLC
Both column values are same one comma extra in first column still its going to else condition i need consider comma in string.
I can able to filter data scenario is in first row both names are same but if i write a condition to compare due to comma its going to else condition. requirement is when name has comma or period we should consider.how to do that
For suppose if your row has same names it will match also the your row has the comma then it will match the condition and it will not go to the else condtion .
Note : - For the above Expression it will replace the comma and dot and even also the white spaces and compare the two rows then the both rows are equal then it matches ( You can perform the actions ) or else it go to the else condition.