I am doing some math in a user form and I want the result to be expressed in dollars with decimal and dollar sign. So the filed ExportValueLabel I want expressed this way.
Private Sub CommandButton4_Click()
'Calculating the export value, net weight and Gross weight
ExportValueLabel = CaseQuantityTextBox * CasePriceTextBox
NetWeightLabel = CaseQuantityTextBox * 30
GrossWeightLabel = CaseQuantityTextBox * 31.38
End Sub
Bookmarks