Cálculos con una milésima de segundo por fracciones de funciones personalizadas mediante VBA
Pregunta: Deben realizarse cálculos con valores en el área de una milésima de segundo Respuesta: Inserte el siguiente código en los módulos correspondientes. Con la siguiente función definida por el usuario. sintaxis: = spectime (A1)
Coloque el siguiente código en el módulo estándar
Function SpecTime(txt As String) Const DIV As Long = 86400 Dim dblValue As Double dblValue = CInt(Right(txt, 4)) / (DIV * 10000) dblValue = dblValue + CInt(Mid(txt, 4, 2)) / DIV dblValue = dblValue + CInt(Left(txt, 2)) / (DIV / 60) SpecTime= dblValue End Function