Bob said:
Dirk where do I put this script? Thanks Bob
Dirk Goldgar said:
Can I get a text box to show"Overdue Amount " when this text
box(tbOverDueAmount) shows anthing more than zero
You mean you want some other text box to show the words "Overdue
Amount" if tbOverDueAmount is more than zero? YOu could give the
text box a controlsource expression of
=IIf([tbOverDueAmount > 0], "Overdue Amount", Null)
With the form open in design view, add the text box to be used for this
(if you haven't already). It will not be bound to any field. Then open
the property sheet for the text box, go to the Data tab, and enter the
expression (including the leading "=" sign) on the line that says
Control Source.
--
Dirk Goldgar, MS Access MVP
www.datagnostics.com
(please reply to the newsgroup)