Round up a figure from VLookUp in VBA userform textbox

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'

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.
 

Excel Facts

Copy PDF to Excel
Select data in PDF. Paste to Microsoft Word. Copy from Word and paste to Excel.
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'

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.

Try maybe wrapping it in CInt() like this

Code:
Price = [COLOR=#ff0000]CInt([/COLOR]Application.WorksheetFunction.VLookup(TextBox1.Text, Range("AllProds2"), 10, 0)[COLOR=#ff0000])[/COLOR]
 
Upvote 0

Forum statistics

Threads
1,214,788
Messages
6,121,577
Members
449,039
Latest member
Arbind kumar

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top