I have a userform in which one of the text boxes displays information from a particular cell on the worksheet. I have formatted the cell in question to only display integer, ie no decimal places, but when the value is imported into the textbox, the textbox displays 8 decimal places. How do I display only the characters to the left of the decimal point in the textbox? The code is below, but is pretty simple actually.
TextBox3.Value = Range("d4")
Thanks for any help,
Rick
TextBox3.Value = Range("d4")
Thanks for any help,
Rick