Tony Miall
Active Member
- Joined
- Oct 16, 2007
- Messages
- 304
Hi,
I have a text box on a user form that displays a value of a cell. I want the text box to display the value in a $ format.
I have tried
and a few other variations with no luck, the value displays as 123.654854746 instead of $123.65
Any help appreciated as usual.
I have a text box on a user form that displays a value of a cell. I want the text box to display the value in a $ format.
I have tried
Code:
Private Sub InvoiceDifference_AfterUpdate()
With Me.InvoiceDifference
.Value = FORMAT(.Value, "$#,###.00")
End With
End Sub
and a few other variations with no luck, the value displays as 123.654854746 instead of $123.65
Any help appreciated as usual.