1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
| Sub Correl()
Application.ScreenUpdating = False
Application.DisplayAlerts = False
NumSS = ThisWorkbook.Sheets("InitBase").Range("D1")
Path = ThisWorkbook.Sheets("Param").Range("B1")
Base = ThisWorkbook.Sheets("Param").Range("B2")
Devise = ThisWorkbook.Sheets("InitBase").Cells(ThisWorkbook.Sheets("InitBase").Range("F1") + 1, 5)
For SSDupli = 1 To 7
If ThisWorkbook.Sheets("Param").Cells(4 + SSDupli, 4) = True Then
For SSSelec = 2 To NumSS
ThisWorkbook.Sheets("Param").Cells(4 + SSDupli, 3 + SSSelec ).Formula = "TRUE"
Next SSSelec
End If
Next SSDupli
...
... |
Partager