I would like to format some of the textboxes to show to decimals instead of report showing whole (fix) numbers.
In report it shows
234
12,23
I want
234,00
12,23
Because I dont know where textboxes witch have to be formatted will be placed I can't use standard formatting in design view.
In the meantime I figured this
If Me.txt1 = Format(Me.txt1, "##") Then
Me.txt1 = Format(Me.txt1, "0.00")
End If
end it works fine without error.
But the problem is that there are some fields witch I don't want to apply formatting to.