Domanda: I calcoli con valori nell’area del decimillesimo di secondo devono essere eseguiti Risposta: Inserire il seguente codice negli appositi moduli. Con la seguente funzione definita dall’utente. sintassi: = spectime (A1)

Inserisci il codice qui sotto nel modulo standard

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