trunc function

jkindhappy

Board Regular
Joined
Jul 14, 2008
Messages
112
Hi,

Can some body tell me how to use "trunc" worksheet function in vba or is there any function available in vba equivalent to "trunc".

Thank you in advance.
 

Excel Facts

How to change case of text in Excel?
Use =UPPER() for upper case, =LOWER() for lower case, and =PROPER() for proper case. PROPER won't capitalize second c in Mccartney
Hi,

TRUNC cuts the decimal places of a number down the the requested number as such;

=TRUNC(156441.154454,3)

Returns;

156441.154

What are you trying to achieve?
 
Upvote 0
Hi Mike,
I was using "trunc" function to split a given number in to thousands, hundreds, rupees and paise using trunc function.

For Example to split 263.25

hundreds=TRUNC(TRUNC(263.25,0)/100,0)
rupees=TRUNC(263.25,0)-TRUNC(TRUNC(263.25,0)/100,0)*100
paise=(263.25-TRUNC(263.25,0))*100

Now to write a code in vba I require this TRUNC function.

Thank you.:)
 
Upvote 0

Forum statistics

Threads
1,214,985
Messages
6,122,607
Members
449,090
Latest member
vivek chauhan

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