ipbr21054
Well-known Member
- Joined
- Nov 16, 2010
- Messages
- 5,831
- Office Version
- 2007
- Platform
- Windows
Userform has 14 TextBoxes.
This works to show the currency correyly example £12,345.00
But i dont want to write that to each Textbox so is there a code that will apply that currency format to the TextBoxeas on the userform
This works to show the currency correyly example £12,345.00
VBA Code:
TextBox1.Value = Format(TextBox1.Value, "Currency")
But i dont want to write that to each Textbox so is there a code that will apply that currency format to the TextBoxeas on the userform