RJSIGKITS
Board Regular
- Joined
- Apr 15, 2013
- Messages
- 109
Hey guys.
Is it possible to RoundUp the figure returned in my textbox (Price) to be a whole round number?
For example, I want '113.2184', to roundup to '114'
I don't mind if it rounds up to:
'114'
or
'114.00'
Cheers in advance.
Is it possible to RoundUp the figure returned in my textbox (Price) to be a whole round number?
For example, I want '113.2184', to roundup to '114'
Code:
Price = Application.WorksheetFunction.VLookup(TextBox1.Text, Range("AllProds2"), 10, 0)
I don't mind if it rounds up to:
'114'
or
'114.00'
Cheers in advance.