+ Reply to Thread
Results 1 to 2 of 2

Excel VBA Round-function

  1. #1
    Registered User
    Join Date
    04-08-2015
    Location
    Norway
    MS-Off Ver
    2010
    Posts
    10

    Excel VBA Round-function

    Hi!

    In this case I have been calculating the values from column L to column M, then from column M to column N.
    For every column I have done calculations the answers is presented with enough desimals until I reached column N.
    Here I only get 1 decimal. As seen in the picture: (Dont mind the colours or the language)

    Excel-ROUND.png

    I get 0.8 instead of 0.79401 as I get with manual calculation in another spreadsheet

    Basically cell N10 = M10 * (I10 - I9)*86400.

    It is litre/sec * the date difference * 86400(s) = litre

    I am a beginner at VBA but I have tried the following:

    Range("M10").Select

    Do Until ActiveCell.Value = ""

    ActiveCell.Offset(0, 1).Value = Round((ActiveCell.Value * ((ActiveCell.Offset(0, -4).Value) - ActiveCell.Offset(-1, -4).Value) * 86400), 4)
    ActiveCell.Offset(1, 0).Select

    Loop

    I hope you are able to understand my question

    Thanks

  2. #2
    Forum Guru TMS's Avatar
    Join Date
    07-15-2010
    Location
    The Great City of Manchester, NW England ;-)
    MS-Off Ver
    MSO 2007,2010,365
    Posts
    48,238

    Re: Excel VBA Round-function

    https://support.microsoft.com/en-us/kb/194983

    When using the Round() function in Visual Basic 6.0, a different result may be returned than when using it in a cell formula of an Excel spreadsheet.

    The VBA Round() function uses Banker's rounding while the spreadsheet cell function uses arithmetic rounding.

    The Round() function in an Excel spreadsheet uses Arithmetic rounding, which always rounds .5 up (away from 0). The Round() function in Visual Basic for Applications 6, uses Banker's rounding, which rounds .5 either up or down, whichever will result in an even number.


    Steps to Reproduce Behavior

    In Excel, open a new spreadsheet and type the following formula into one of the cells:
    =Round(2.5, 0)

    The result is 3.

    In Visual Basic 6.0 or other applications using VBA 6, open a new project and type the following expression into the Debug or Immediate window:
    ? Round(2.5, 0)

    The result is 2.


    Regards, TMS
    Trevor Shuttleworth - Retired Excel/VBA Consultant

    I dream of a better world where chickens can cross the road without having their motives questioned

    'Being unapologetic means never having to say you're sorry' John Cooper Clarke


+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Replies: 5
    Last Post: 01-30-2015, 11:34 AM
  2. [SOLVED] Conditional Round up or Round up Function
    By cdmterence in forum Excel Programming / VBA / Macros
    Replies: 17
    Last Post: 09-18-2013, 06:03 PM
  3. Excel if or round function?
    By Jules5365 in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 03-02-2008, 03:33 PM
  4. VB Function Round vs Excel function Round not behaving the same Od
    By Bud in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 08-18-2006, 12:45 AM
  5. [SOLVED] round function in excel 2000
    By lots of questions in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 03-03-2005, 10:06 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1