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.
Sub Main()
For es=3549 To EstrazioneFin
For r=1 To 10
If Estratto(es,r,1)>0 Then
Scrivi Anno(es)&"/"&Format2(Mese(es))&"/"&Format2(giorno(es))&" ",0,0
Scrivi SiglaRuota(r)&" ",0,0
For p=1 To 5
Scrivi FormatSpace(Estratto(es,r,p),2,1)&" ",0,0
Next
Scrivi
End If
Next
Next
Scrivi
End Sub
Sub Main()
For es=3549 To EstrazioneFin ' per NZ imposta 7440
For r=1 To 11
If r=11 Then r=12
If Estratto(es,r,1)>0 Then
Scrivi Anno(es)&"/"&Format2(Mese(es))&"/"&Format2(Giorno(es))&" ",0,0
Scrivi SiglaRuota(r)&" ",0,0
For p=1 To 5
Scrivi FormatSpace(Estratto(es,r,p),2,1)&" ",0,0
Next
Scrivi
End If
Next
Next
Scrivi
End Sub
Sub Main()
Dim Es,R,P,S,Out
S = vbTab
For Es = 3549 To EstrazioneFin ' per NZ imposta 7440
For R = 1 To 11
If R = 11 Then R = 12
Out = ""
If Estratto(Es,R,1) > 0 Then
'Scrivi Anno(es)&"/"&Format2(Mese(es))&"/"&Format2(giorno(es))&" ",0,0
Out = Anno(Es) & "/" & Format2(Mese(Es)) & "/" & Format2(giorno(Es)) & S & SiglaRuota(R)
'Scrivi SiglaRuota(r)&" ",0,0
For P = 1 To 5
'Scrivi FormatSpace(Estratto(es,r,p),2,1)&" ",0,0
Out = Out & S & Format2(Estratto(Es,R,P))
Next
End If
If Out <> "" Then Scrivi Out
Next
Next
End Sub