I'm using a userform to add numbers in my excel sheet.
When someone add 01234
in the userform, I only see 1234
in the excel cell.
So I modified the cell format, it worked but whenever i wanted to only add 1234
, excel would display a 0 so 01234
.
I just want to be able to add the textbox value as it is in excel sheets.
Thank you
EDIT:
This is a part of the code that takes the textbox value and enters in the requested cell :
Sheets("Sheet3").Range("B4").Select
ActiveCell.Value = UCase(TextBox2)