One of two options, you can use Trim(A1) on any cell that has leading or trailing spaces to get the valid data, or, if you are trying to access 5 characters from A1 and it is only 1 character long use A1&" " etcOriginally Posted by stevekirk
=Right(" "&A1,5)
or
=Left(A1&" ",5)
etc.
so right("_____"&E2,5)
should work for you. (with 5 spaces)
hth
---
Bookmarks