how do i preceed a number with '$' sign automatically

  • Thread starter Thread starter sam
  • Start date Start date
S

sam

how do i preceed a number with '$' sign automatically for a fields that
inputs dollar amount.

Thanks in advance
 
how do i preceed a number with '$' sign automatically for a fields that
inputs dollar amount.

Thanks in advance

You don't, in a *field*. Fields store data (numbers in this case).

You can do so in a *control* such as a textbox on a Form or Report, by setting
the textbox's Format property to "Currency" or to "$#,##0.00".
 
Back
Top