Link to home
Start Free TrialLog in
Avatar of Zack
ZackFlag for Australia

asked on

Vlookup Compare Values Between Columns - Ignore Spacing

Heyas,

I know the standard Vlookup comparison formula e.g.

=IF(ISNA(VLOOKUP(A1,$A$1:$A$15,1,FALSE)), "No", "Yes")

My query how do you make the standard formula ignore spacing.

Thank you.
Avatar of Rgonzo1971
Rgonzo1971

HI

Do you mean?

=IF(ISNA(VLOOKUP(TRIM(A1),$A$1:$A$15,1,FALSE)), "No", "Yes")

Regards
ASKER CERTIFIED SOLUTION
Avatar of [ fanpages ]
[ fanpages ]

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Zack

ASKER

Cheers for the help.
You're very welcome.