Text Box Question

  • Thread starter Thread starter Bob
  • Start date Start date
B

Bob

Can I get a text box to show"Overdue Amount " when this text
box(tbOverDueAmount) shows anthing more than zero


Thanks in advance.........Bob Vance
 
Bob,

DO you mean a second textbox, almost as if it is a label? If so, set
the Control Source of an unbound textbox to something like this...

=IIf([tbOverDueAmount]>0,"Overdue Amount",Null)
 
Back
Top