View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.programming
J.E. McGimpsey J.E. McGimpsey is offline
external usenet poster
 
Posts: 493
Default Rounddown problem in VBA

you can use the worksheet functions:

? Application.RoundDown(1.238,2)
1.23

? Application.Floor(1.238, 0.005)
1.235



In article ,
(chiajack) wrote:

Hie, i have problem rounding down a value using VBA. Can you help?