Thanks Dave,
This is getting closer. I still get a duplicate negative sign for any
negative amounts.
Example: -845.27 ends up -000000000085291-
How can I get rid of the leading negative sign. I have tried
formatting the source cell various ways but can't quite get it right.
Zero works fine but should never happen here as this is for expense
reports (why submit a zero expense).
Thanks for your help.
> =TEXT(100*F3,"000000000000000")&IF(F3<0,"-","+")
>
[quoted text clipped - 25 lines]
> >
> > Thanks in advance.
Dave Peterson - 28 Feb 2006 19:58 GMT
try:
=TEXT(100*ABS(F3),"000000000000000")&IF(F3<0,"-","+")
> Thanks Dave,
> This is getting closer. I still get a duplicate negative sign for any
[quoted text clipped - 41 lines]
> >
> > Dave Peterson

Signature
Dave Peterson
rdraider@sbcglobal.net - 28 Feb 2006 21:11 GMT
That works!
Thanks very much, I really appreciate your help.
Have a good day.