This determines the number of characters (including spaces) in B3, which
equals 6.
=Len(B3)
Since you want to remove the first character, then you need to subtract 1:
=Len(B3)-1
This returns the 5 right-most characters, which is 0.30%.
=Right(B3,5)
Now just replace the '5' with the formula we used to determine that number.
=Right(B3,Len(B3)-1)
Now you just need to subtract from B5, hence:
=B5-RIGHT(B3,LEN(B3)-1)
HTH,
Paul
> If you have time, would you please break this formula down into laymen's
> terms?
[quoted text clipped - 24 lines]
>> >
>> > Any help would be greatly appreciated
Karen - 24 Oct 2006 16:20 GMT
Thank you - It helps to understand the formula - You made my day!
> This determines the number of characters (including spaces) in B3, which
> equals 6.
[quoted text clipped - 42 lines]
> >> >
> >> > Any help would be greatly appreciated