View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
Zerowaycool Zerowaycool is offline
external usenet poster
 
Posts: 4
Default Display currency as calculated

Where I have a value like activecell.value = some long calculation or even a
sum of figues which end up equalling the answer of 22.63/11 how do I use the
Trunc function ? Do I need to have the activecell.value passed into a
variable and then call the variable into the trunc function. The reason is, I
have a loop running which calculates the activecell and then offsets.


"Wouter HM" wrote:

Hi Gav,

You have to specify the number of digits remaining
Try:
=Trunc(22.63/11, 2)

HTH,

Wouter

.