Woops, forgot to mention. Before user inputs a dollar amount, all
subsequent cells with dependent formulas show up as the confusing #VALUE!.
It turned out extremely easy to set up conditional formatting to make the
#VALUE! text disappear. I changed the regular font in cell so that it's the
same colour as the cell background. In the conditional formatting, I tested
out having cell value >0 with an actual font colour and the cell results
show up as numbers in a sane and rational way once the user goes into the
cell and inputs a dollar amount. Very kewl.
Thanks for this, once again.

D
"StargateFanFromWork" <(E-Mail Removed)> wrote in message
news:u1Dy3Cs$(E-Mail Removed)...
> Perfect!! Thank you, that's like magic. Enabling set everything in
motion,
> it seems.
>
> I set up the sheet so that it's ready to go with the text string showing.
> Since it's a locked template, each test shows the text is in place on
> launching and it prompts user on where to start in a simple,
straightforward
> way.
>
> Gotta love Excel! <g>
>
> Thanks.
D
>
> "Sandy" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
> > Also make sure that your EnableEvents is active, run this code to make
> > sure it is
> >
> > Place this in the same way you pasted the last code, to run it press
> > alt + F8 together and select Myenable and click run, this will allow
> > worksheet/workbook events to run.
> >
> >
> > Sub Myenable()
> > Application.EnableEvents = True
> > End Sub
> >
> > Sandy
> >
> >
> > StargateFanFromWork wrote:
> > > Not a good sign. This didn't work. I put the code exactly as below
> into
> > > the vba in the window for this sheet, but nothing.
> > >
> > > Did this work for you? Tx.
D
> > >
> > >
> > > "Sandy" <(E-Mail Removed)> wrote in message
> > > news:(E-Mail Removed)...
> > > > try this:
> > > >
> > > > right click on the sheet tab where you want C2 to change and select
> > > > view code from the menu(on the bottom) then paste this code into the
> > > > window
> > > >
> > > > Private Sub Worksheet_SelectionChange(ByVal Target As Range)
> > > > If Range("C2") = Empty Then
> > > > Range("C2").Value = "Please enter a value here..."
> > > > End If
> > > > End Sub
> > > >
> > > >
> > > > Sandy
> > > >
> > > >
> > > > StargateFanFromWork wrote:
> > > > > I had an idea this morning to make my user's lives easier for a
> > > particular
> > > > > spreadsheet. The idea is to have a text string appear in cell C2
if
> > > it's
> > > > > empty, and that is:
> > > > >
> > > > > "Please enter value here ..."
> > > > >
> > > > > And then when user enters a value, they'll see the data they've
> entered
> > > into
> > > > > that cell until/unless they empty the cell.
> > > > >
> > > > > Is this possible to do?
> > > > >
> > > > > Again, I've just spent a considerable amount of time in the
archives
> > > > > searching for conditional formatting examples with text strings,
but
> > > nothing
> > > > > comes up that's pertinent.
> > > > >
> > > > > TIA.
D