V
Vayse
I want to display numbers with a comma between every 3 digits, with no
decimal places.
I've tried
Const conFORMAT As String = "###,###,###"
Me.CashTextBox.Text = Format(drEconomy("Cash"), conFORMAT)
Which displays fine in general. For example: 999,817 will come out fine
However, if the value is zero, then the text box will be empty. Is there a
different format I can use to get 0 to displayed correclty?
Thanks
Vayse
decimal places.
I've tried
Const conFORMAT As String = "###,###,###"
Me.CashTextBox.Text = Format(drEconomy("Cash"), conFORMAT)
Which displays fine in general. For example: 999,817 will come out fine
However, if the value is zero, then the text box will be empty. Is there a
different format I can use to get 0 to displayed correclty?
Thanks
Vayse