Hi ,
I recently has some code whereby a TextBox would display a number without the first digit. So, 3.456 would be displayed as .456 which allowed the textBox to make a certain calculation.
However, sometimes the number 12.214 would be displayed and of course I need .214 but the TextBox is displaying 2.214. So I need code that will display any number including and after the decimal point?
Can anyone help as to how this line can be adapted?
TextBox8.Value = Right(TextBox5.Value, WorksheetFunction.Max(Len(TextBox5.Value) - 1, 0)) 'THIS DISPLAYS THE FIGURE WITHOUT THE FIRST FIGURE e.g. .25454
Many Thanks
Bookmarks