
Signature
Earl Kiosterud
www.smokeylake.com
-----------------------------------------------------------------------
> Say the date that a certain event occurs (2/17/07) is in cell A1.
> I would like to have cell B1 display: Completed 2/17/07
> If I use the formula ="Completed "&A1, it displays: Completed 39130
> Is there another way to do this?
Trouble with that Earl, is that empty cells will display:
Completed 01/00/00
So, the
=A1
formula should become something like this:
=IF(A1>0,A1,"")
OR ... to retain the
=A1
formula, the custom format should be something like:
[>0]"Completed "mm/dd/yy;General;
With the last semi-colon included to eliminate 0's when empty cells are in
the first column.

Signature
Regards,
RD
---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------
> Matt,
>
[quoted text clipped - 10 lines]
> > If I use the formula ="Completed "&A1, it displays: Completed 39130
> > Is there another way to do this?
Earl Kiosterud - 18 Feb 2007 04:04 GMT
RD,
Oops. You're right. Similar to your second solution, you could use
"Completed" mm/dd/yy;;

Signature
Earl Kiosterud
www.smokeylake.com
-----------------------------------------------------------------------
> Trouble with that Earl, is that empty cells will display:
> Completed 01/00/00
[quoted text clipped - 28 lines]
>> > If I use the formula ="Completed "&A1, it displays: Completed 39130
>> > Is there another way to do this?
Ragdyer - 18 Feb 2007 05:50 GMT
I like that one even better!<g>

Signature
Regards,
RD
---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------
> RD,
>
[quoted text clipped - 39 lines]
> >> > If I use the formula ="Completed "&A1, it displays: Completed 39130
> >> > Is there another way to do this?