$123,456 displayed as $ 123,456?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is it possible to have the value right justified but the dollar sign left
justified in a report field?

-Adam
 
Adam said:
Is it possible to have the value right justified but the dollar sign
left justified in a report field?

-Adam

Put the dollar sign in a label to the left of your TextBox. Right justify
the label so the $ is right up against the TextBox.
 
Adam said:
Is it possible to have the value right justified but the dollar sign left
justified in a report field?


You can use the * formatting code in a custom format to do
that. Maybe this is all you need:
$* 0.00
Note the space after the *
 
Back
Top