Belleke
Well-Known Member
Hi helpers,
I have a problem with textbox format in a userform.
Cell format in the sheet is percentage (0 decimals) (as example 15%)
I have this code to populate the textboxes in the userform
As example, in a cell I have 15%, but the textbox result in the userform is 0,15 afther the ListBox1 click event. Need some advice to populate textbox with 15% instead of 0,15.
Thank you in advance
I have a problem with textbox format in a userform.
Cell format in the sheet is percentage (0 decimals) (as example 15%)
I have this code to populate the textboxes in the userform
Code:
Private Sub ListBox1_Click()
...
TextBox18.Value = ListBox1.Column(22)
...
End sub
Thank you in advance