/ Published in: Visual Basic
Replace 'A1' with the cell and '-' with the character you want to remove.
Expand |
Embed | Plain Text
=IF(RIGHT(A1,1)="-",LEFT(A1,LEN(A1)-1),A1)
You need to login to post a comment.
TheJasonParker on 01/14/11
1 person have marked this snippet as a favorite
Replace 'A1' with the cell and '-' with the character you want to remove.
=IF(RIGHT(A1,1)="-",LEFT(A1,LEN(A1)-1),A1)
You need to login to post a comment.