1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195
| Sub crea_offre()
'inhibe ouverture des onglets, pour éviter le clignotement quand on passe d'un onglet à l'autre
Application.ScreenUpdating = False
If Range("r12").Value <> 0 Then
If MsgBox("La somme des PV retenus est différente des PV arrondis.", vbYesNo, "Confirmation") = vbNo Then
Exit Sub
End If
End If
If Range("t12").Value = 1 Then
Else
MsgBox ("Le total des conditions de paiement est différent de 100%")
Exit Sub
End If
'************
'RAZ des zones offres
'************
'définir les N° des lignes repère
Dim pB As Integer, pE As Integer
Sheets("Offre client").Activate
Range("A18").Select
While ActiveCell.Value <> "B"
Selection.Offset(1, 0).Activate
Wend
pB = ActiveCell.Row
'MsgBox ("18 " & pB)
'RAZ zone machine
If pB - 18 > 2 Then 'si il y a plus d'une ligne de machine, on supprime celles en trop
Rows("20:" & pB - 1).Select
Selection.Delete shift:=x1Up
End If
Range("B19:E19,e20").Select 'on raz la ligne restante
Selection.ClearContents
'RAZ zone option
Range("A28").Select
While ActiveCell.Value <> "E"
Selection.Offset(1, 0).Activate
Wend
pE = ActiveCell.Row
'MsgBox ("30 " & pE)
If pE - 30 > 2 Then 'si il y a plus d'une ligne d'option, on supprime celles en trop
Rows("32:" & pE - 1).Select
Selection.Delete shift:=x1Up
End If
Range("B31:E31").Select 'on raz la ligne restante
Selection.ClearContents
Range("a24").Select
'MsgBox ("RAZ faite")
'**************
'création des lignes de machines
'**************
Dim ligneoffre As Integer, ligneselect As Integer
ligneoffre = 19
ligneselect = 13
'trier par N° de machine croissant
Sheets("Selection").Activate
activeworkbook.Worksheets("Selection").AutoFilter.Sort.SortFields.Clear
activeworkbook.Worksheets("Selection").AutoFilter.Sort.SortFields.Add Key:= _
Range("e12"), SortOn:=xlSortOnValues, Order:=xlAscending, DataOption:= _
xlSortNormal
With activeworkbook.Worksheets("Selection").AutoFilter.Sort
.Header = xlYes
.MatchCase = False
.Orientation = xlTopToBottom
.SortMethod = xlPinYin
.Apply
End With
Range("E13").Select
While ActiveCell.Value <> "" 'tant qu'il y a une machine sélectionnée
'on copie les valeurs
Sheets("Offre client").Activate
Rows(ligneoffre).Select
Selection.Copy
Rows(ligneoffre + 1).Select
Selection.Insert shift:=xlDown
Worksheets("Offre client").Cells(ligneoffre, "b") = Worksheets("Selection").Cells(ligneselect, "e") 'ajouter M
Worksheets("Offre client").Cells(ligneoffre, "c") = Worksheets("Selection").Cells(ligneselect, "g")
Worksheets("Offre client").Cells(ligneoffre, "e") = Worksheets("Selection").Cells(ligneselect, "n")
ligneoffre = ligneoffre + 1 'incrémenter le N de ligne où copier la machine
ligneselect = ligneselect + 1 'incrementer le N° de ligne de la machine
Sheets("Selection").Activate
Range("E" & ligneselect).Select
Wend
Sheets("offre client").Activate
Range("A18").Select
While ActiveCell.Value <> "B"
Selection.Offset(1, 0).Activate
Wend
pB = ActiveCell.Row
Dim sommach As String
sommach = "=sum(E19:E" & ligneoffre & ")"
Range("E" & pB).Formula = sommach
' MsgBox ("machines créées " & ligneoffre & " " & sommach)
'**************
'création des lignes d'options
'**************
Sheets("Offre client").Activate
Range("A28").Select
While ActiveCell.Value <> "D"
Selection.Offset(1, 0).Activate
Wend
ligneoffre = ActiveCell.Row + 1
'MsgBox ("ligne offre:" & ligneoffre)
Sheets("Selection").Activate
Range("A15").Select
While ActiveCell.Value <> "Options"
Selection.Offset(1, 0).Activate
Wend
ligneselect = ActiveCell.Row + 1
'MsgBox ("ligne selection :" & ligneselect)
Range("c" & ligneselect).Select
Dim N As Integer
N = 1
While ActiveCell.Value <> "" 'tant qu'il y a une option
Sheets("Offre client").Activate
Rows(ligneoffre).Select
Selection.Copy
Rows(ligneoffre + 1).Select
Selection.Insert shift:=xlDown
'on copie les valeurs
'créer N° de ligne d'offre en B
Worksheets("Offre client").Cells(ligneoffre, "b") = "Op" & N
Worksheets("Offre client").Cells(ligneoffre, "c") = Worksheets("Selection").Cells(ligneselect, "g")
Worksheets("Offre client").Cells(ligneoffre, "e") = Worksheets("Selection").Cells(ligneselect, "n")
ligneoffre = ligneoffre + 1 'incrémenter le N de ligne où copier la machine
ligneselect = ligneselect + 1 'incrementer le N° de ligne de la machine
N = N + 1
Sheets("Selection").Activate
Range("c" & ligneselect).Select
Wend
Application.CutCopyMode = False
Sheets("offre client").Activate
ActiveSheet.PageSetup.LeftFooter = ""
ActiveSheet.PageSetup.CenterFooter = ""
ActiveSheet.PageSetup.RightFooter = ""
MsgBox ("L'offre a été actualisée.")
'Dim formulenom As Variant
'formulenom = "=RECHERCHEV(Selection!G2;'Historique-'!S63:V65;2;FAUX)"
'ActiveSheet.PageSetup.LeftFooter = formulenom
Dim Police As String
Dim Taille As String
Dim TexteLeft As String
Dim TexteCenter As String
Dim TexteRight As String
Police = "Arial"
Taille = 6
TexteLeft = Range("A1").Value
TexteCenter = Range("A3").Value
TexteRight = Range("A2").Value
'MsgBox (TexteLeft & " " & TexteCenter & " " & TexteRight)
ActiveSheet.PageSetup.LeftFooter = "&""" & Police & ",normal""" & "&" & Taille & TexteLeft
ActiveSheet.PageSetup.CenterFooter = "&""" & Police & ",normal""" & "&" & Taille & TexteCenter
ActiveSheet.PageSetup.RightFooter = "&""" & Police & ",normal""" & "&" & Taille & TexteRight
'réactive ouverture des onglets
Application.ScreenUpdating = True
End Sub |