Recent content by djnoser

  1. D

    A2003 round() not working

    I use my own rounding function: Function ROUNDED(Amt As Double, Places As Integer) As Double ROUNDED = Int(Amt * 10 ^ Places + 0.5 + 0.1 ^ 10) / 10 ^ Places End Function Unlike the built in function, this also rounds to negative places [rounded(123456789,-2) = 123456800].
  2. D

    Question Database Properties: dates

    The Database Properties "Statistics" tab on my databases show a correct "Created:" date but the "Modified:" and "Accessed:" dates are 2+ years prior to the correct date. All three dates on the "General" tab are incorrect. Because the "Modified:" date is displayed in Windows Explorer, it...
Back
Top Bottom