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

Show numbers in thousands?
Use a custom number format of #,##0,K. Each comma after the final 0 will divide the displayed number by another thousand
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,215,378
Messages
6,124,604
Members
449,174
Latest member
ExcelfromGermany

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