lestodante
Junior Member
Gentili utenti, qualcuno può aiutarmi per uno script che faccia la somma degli estratti in verticale esempio: BA-CA; CA-FI; FI-GE;... QUESTO PER TUTTI E CINQUE GLI ESTRATTI
GRAZIE
GRAZIE
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.
grazie per avermi rispostoSe usi Spaziometria nella sezione statistiche/quadro somme distanze c'e' la funzione
somme in verticale . Ciao
Sub Main
Fin = EstrazioneFin : Scrivi DataEstrazione(Fin),1 : Scrivi
For R1 = 1 To 9 : R2 = R1 + 1
Stringa1 = SiglaRuota(R1) & " "
Stringa2 = SiglaRuota(R2) & " "
Stringa3 = Space(4)
For P = 1 To 5
E1 = Estratto(Fin,R1,P) : E2 = Estratto(Fin,R2,P)
Stringa1 = Stringa1 & Format2(E1) & "+ "
Stringa2 = Stringa2 & Format2(E2) & "= "
Stringa3 = Stringa3 & Format2(Fuori90(E1 + E2)) & " "
Next
Scrivi Stringa1
Scrivi Stringa2
Scrivi Stringa3
Scrivi
Next
End Sub
Sub Main
'Somme Ripetute per lestodante. V.3.0 By Joe. Alba, 07/01/2014.
Ini = EstrazioneFin - 9 : Fin = EstrazioneFin
For Es = Ini To Fin : Scrivi String(21,"=") & " " & DataEstrazione(Es) & " " & String(22,"="),1
For R1 = 1 To 10 : R2 = R1 + 1 : If R2 = 11 Then R2 = 1
Scrivi SiglaRuota(R1) & "+" & SiglaRuota(R2) & " ",1,0
ReDim Nu(90)
For P = 1 To 5
E1 = Estratto(Es,R1,P) : E2 = Estratto(Es,R2,P)
S =(Fuori90(E1 + E2)) : Nu(S) = Nu(S) + 1
Next
For P = 1 To 5
E1 = Estratto(Es,R1,P) : E2 = Estratto(Es,R2,P)
S = Format2(Fuori90(E1 + E2))
If Nu(s) > 1 Then ColoreTesto 2 : Gr = True
Scrivi Format2(E1) & "+" & Format2(E2) & "=" & Format2(S) & " ",Gr,0 : ColoreTesto 0 : Gr = False
Next
Scrivi
Next
Next
Scrivi "RUOTE ",1,0
For P = 1 To 5
Scrivi P & "' Estr. ",1,0
Next
End Sub