Follow along with the video below to see how to install our site as a web app on your home screen.
Nota: This feature may not be available in some browsers.
Option Explicit
Sub Main
'Archivio per Trivellato
' Script By Joe
Dim Ini,Fin,IdEstr,R,P,sEstr,sChr_Num,sChr_Col
sChr_Num = "."
sChr_Col = Chr(32)
Call ScegliRange(Ini,Fin,EstrazioneIni,EstrazioneFin)
Call ResetTimer
For IdEstr = Fin To Ini Step - 1
Call AvanzamentoElab(Ini,Fin,IdEstr)
sEstr = Data(IdEstr) & sChr_Col
For R = 1 To 12
If R = 11 Then R = 12
ReDim aEstr(0)
Call GetArrayNumeriRuota(IdEstr,R,aEstr)
For P = 1 To 5
sEstr = sEstr & CStr(Format2(aEstr(P)))
If P < 5 Then sEstr = sEstr & sChr_Num
Next
sEstr = sEstr & sChr_Col
Next
Scrivi sEstr
Next
End Sub
Function Data(Es)
Dim D,M
D = DataEstrazione(Es)
M = Mese(Es)
Data = Left(D,2) &space(1) & Left(MeseNome(M),3) & Space(1) & Anno(Es)
End Function