That's what I figured... I really don't want to have to deal with the
overhead associated with a _SheetChange or _SheetCalculate scenario...
I think I'm stuck rewriting the stupid thing...
Thank you
Have you considered writing a function, rather than a macro?
This way, you can pass D14 as a parameter, calculate the cell contents and
then format the cell. I suspect you will have to pass the address of the
active cell to the function because "ActiveCell" won't be appropriate in
the function.
Regards
Jeff Hall (coincidence!)
> *From:* hall.jeff@gmail.com
> *Date:* Thu, 3 Apr 2008 13:25:24 -0700 (PDT)
>
> That's what I figured... I really don't want to have to deal with the
> overhead associated with a _SheetChange or _SheetCalculate scenario...
> I think I'm stuck rewriting the stupid thing...
> Thank you
>
[quoted text clipped - 18 lines]
> |
> | Any ideas?
Jim Rech - 04 Apr 2008 16:53 GMT
Jeff-
A formula (using either built-in Excel functions or a UDF) cannot return a
partially formatted string. Or any kind of format. Formulas return values
to cells and that's it.
Take that as a challenge if you want<g>.

Signature
Jim
> Have you considered writing a function, rather than a macro?
>
[quoted text clipped - 35 lines]
>> |
>> | Any ideas?
Jeff Hall - 05 Apr 2008 00:30 GMT
Hmmm... I see what you mean! A function would have to return a value before
it could attempt to format the result and even if the latter were possible,
it's too late after the function has completed.
Jeff
> *From:* "Jim Rech" <jrrech@live.com>
> *Date:* Fri, 4 Apr 2008 11:53:37 -0400
[quoted text clipped - 51 lines]
> >> |
> >> | Any ideas?