I'm not convinced that it does help, Pete, or Gary.
In your formula
right(A1,len(A1)-8))
will remove the first 8 letters from the text string, and give you the
remaining right-hand end of the string.
You are then using that string as the second argument for the left function,
which not surprisingly returns a #value error.
Perhaps you intended to suggest
=TRIM(LEFT(A1,LEN(A1)-8))

Signature
David Biddulph
> Slight correction, Gary:
>
[quoted text clipped - 36 lines]
>> > > > I want to delete this word from end of all texts.
>> > > > How can I do it.
Pete_UK - 20 Oct 2006 09:13 GMT
Yes, you're right David -I just spotted trimleft in Gary's posting and
thought that isn't a function!
Pete
> I'm not convinced that it does help, Pete, or Gary.
>
[quoted text clipped - 51 lines]
> >> > > > I want to delete this word from end of all texts.
> >> > > > How can I do it.
Rasoul Khoshravan - 25 Oct 2006 18:34 GMT
Thanks for replies.
> Yes, you're right David -I just spotted trimleft in Gary's posting and
> thought that isn't a function!
[quoted text clipped - 61 lines]
>> >> > > > I want to delete this word from end of all texts.
>> >> > > > How can I do it.