27 の異なる組み合わせを表すフットボール プールの 3 つのトリプルを組み合わせたマクロを VBA で開発しました。27 は、賭けの可能な最大の組み合わせを表します。二重、固定、三重の予測を持つシステムを開発する方法でリストを変更したいと思います。
たとえば、プログラムは次の場合にのみ機能します。
1st game 1 x 2
2nd game 1 x 2
3rd game 1 x 2
に等しい(3 * 3 * 3 = 27 possible combinations)
ただし、予測が次の場合:
1st game 1 x
2nd game 1
3rd game 1 x 2
に等しい(2 * 1 * 3 = 6 possible combinations)
今 : 最初のゲーム 1 x 2 、2 番目の 1 x 2 、3 番目の 1 x 2 、等しい (3 * 3 * 3 = 27 の組み合わせ) しかし、予測が次のようになる場合: 最初のゲーム 1 x、2 番目の 1 、3 番目の x 2 、(2 * 1 * 3 = 6 の組み合わせ) に等しい有効な列のみを出力する必要があります。
問題を解決するのを手伝ってくれる人に事前に感謝します。
Sub Combination_Prediction()
Dim A As Integer
Dim B As Integer
Dim C As Integer
Dim Col1Sviluppo As Integer
Dim Row1Sviluppo As Integer
Col1Sviluppo = 10
Row1Sviluppo = 14
For C = 3 To 5
For B = 3 To 5
For A = 3 To 5
Contatore = Contatore + 1
Col1Sviluppo = Col1Sviluppo + 1
Cells(Row1Sviluppo + 1, Col1Sviluppo) = Cells(2, A)
Cells(Row1Sviluppo + 2, Col1Sviluppo) = Cells(3, B)
Cells(Row1Sviluppo + 3, Col1Sviluppo) = Cells(4, C)
Cells(10, 10) = Contatore & " colonne elaborate"
Next A
Next B
Next C
End Sub