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
|
Worksheets("feuil2").Activate
If Range("B2").Select = 0 Then
Range("F2").Select
ActiveCell.FormulaR1C1 = "=code39(RC[-4])"
With Selection.Font
.Name = "Code 3 de 9"
.Size = 30
.Strikethrough = False
.Superscript = False
.Subscript = False
.OutlineFont = False
.Shadow = False
End With
Else
[F65000].End(xlUp).Offset(1, 0).Select
ActiveCell.FormulaR1C1 = "=code39(RC[-4])"
With Selection.Font
.Name = "Code 3 de 9"
.Size = 30
.Strikethrough = False
.Superscript = False
.Subscript = False
.OutlineFont = False
.Shadow = False
End With
End If |
Partager