Convertion VBA en JavaScript pour sheet
Bonjour je suis nouveau sur le forum et j'ai vraiment besoin d'aide !!!
J'aimerai converti deux petit code VBA de mon fichier Excel sur mon nouveau fichier GoogleSheet et je suis vraiment perdu dans le langage de code Java.
Aurait-il une personne pouvant me convertir les deux VBA.
Voici les deux codes.
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13
| Sub MacroSauv()
'
' MacroSauv Macro
'
'
Range("A1:K53").Select
Range("K1").Activate
ActiveSheet.ExportAsFixedFormat Type:=xlTypePDF, FileName:= _
"Demande d'inscription et de réinscription." & Range("N7") _
, Quality:=xlQualityMinimum, IncludeDocProperties:=True, IgnorePrintAreas _
:=False, OpenAfterPublish:=False
End Sub |
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
| Sub MacroCE1()
'
' MacroCE1 Macro
'
'
Sheets("2APG").Select
Application.ScreenUpdating = False
DL = 1 + Range("B65500").End(xlUp).Row
Cells(DL, "B").FormulaLocal = "=Formulaire!C9"
Cells(DL, "C").FormulaLocal = "=Formulaire!H9"
Cells(DL, "D").FormulaLocal = "=Formulaire!I15"
Range("B" & DL & ":D" & DL) = Range("B" & DL & ":D" & DL).Value
End Sub |