Forum Discussion
ajmal_pottekattil_yoousuf
Nov 11, 2022Iron Contributor
How to find the Vlookup
Here the Code is not pickup. please refer the attached excel sheet.
Riny_van_Eekelen
Nov 11, 2022Platinum Contributor
ajmal_pottekattil_yoousuf
Nov 11, 2022Iron Contributor
- Riny_van_EekelenNov 11, 2022Platinum Contributor
That's because you have a space at the end in "HAVELOCK ONE INTERIORS LLC " in B4, whereas the first part of C4 in sheet2 has a comma directly after "LLC". Remove the space in B4 or add one before the comma in C4.
- ajmal_pottekattil_yoousufNov 12, 2022Iron ContributorIn this sheet more than 2000 customers are present.
Is any equation is remove the blank space automatically.- Riny_van_EekelenNov 12, 2022Platinum Contributor
TRIM will remove leading and trailing spaces, but also multiple spaces within a text string.
CLEAN will remove all non-printable characters from a text string.
You could use them both in one go if you want. Something like:
=CLEAN(TRIM(A1))