IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

OpenOffice & LibreOffice Discussion :

Conversion Macro Excel en Calc


Sujet :

OpenOffice & LibreOffice

  1. #1
    Nouveau Candidat au Club
    Femme Profil pro
    Étudiant
    Inscrit en
    Mars 2015
    Messages
    1
    Détails du profil
    Informations personnelles :
    Sexe : Femme
    Localisation : France, Haute Loire (Auvergne)

    Informations professionnelles :
    Activité : Étudiant
    Secteur : Finance

    Informations forums :
    Inscription : Mars 2015
    Messages : 1
    Points : 1
    Points
    1
    Par défaut Conversion Macro Excel en Calc
    Bonjour à tous,

    Je sèche lamentablement sur les Macros Calc et je fais donc appel à vos connaissances.

    Vous serait il possible de transformer une macro Excel (ci dessous) en macro Calc ?

    Vous en remerciant par avance.

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    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
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
    279
    280
    281
    282
    283
    284
    285
    286
    287
    288
    289
    290
    291
    292
    293
    294
    295
    296
    297
    298
    299
    300
    301
    302
    303
    304
    305
    306
    307
    308
    309
    310
    311
    312
    313
    314
    315
    316
    317
    318
    319
    320
    321
    322
    323
    324
    325
    326
    327
    328
    329
    330
    331
    332
    333
    334
    335
    336
    337
    338
    339
    340
    341
    342
    343
    344
    345
    346
    347
    348
    349
    350
    351
    352
    353
    354
    355
    356
    357
    Public Solde, Fois, NbCollec As Long
    Public Collec(1 To 500), Coll As String
    Public Continue As Boolean
     
     
    Sub Test()
     
        If Worksheets(2).Range("I1").Value = "" Then
     
     
            Fois = 0
            NbCollec = 1
     
            Application.ScreenUpdating = True
     
            Collec(1) = InputBox("Code Col " & Chr(13) & "Sur 5 Chifres Ex : 20000 " & Chr(13) & "Sur 3 Chiffres Ex : 201 et le logiciel complètera avec 00" & Chr(13) & "vous aurez alors 20100")
            If Len(Collec(1)) > 5 Or Len(Collec(1)) < 3 Then MsgBox ("Erreur !")
            If Len(Collec(1)) > 5 Or Len(Collec(1)) < 3 Then Exit Sub
            If Len(Collec(1)) = 3 Then Collec(1) = Collec(1) & "00"
     
     
            Do While (Collec(NbCollec) <> "")
                Collec(NbCollec + 1) = InputBox("Code Colectivité (Appuyez sur Entrée pour Finir)")
                If Len(Collec(NbCollec + 1)) > 5 Then GoTo Refait
                If Len(Collec(NbCollec + 1)) = 3 Then Collec(NbCollec + 1) = Collec(NbCollec + 1) & "00"
                NbCollec = NbCollec + 1
    Refait:
                If NbCollec > 10 Then GoTo ZappColl
            Loop
     
    ZappColl:
            If NbCollec > 10 Then MsgBox ("Vous avez atteint le nombre maximal de collectivité, Appuyer sur Entrée pour continuer")
     
            NbCollec = NbCollec - 1
     
     
            For i = 1 To NbCollec
                Coll = Collec(i)
     
    'Permet d'aller sur un autre logiciel en environnement Web (le logiciel étant la dernière fenêtre a avoir été cliquée avant de lancer la macro)
                Application.WindowState = xlMinimized
     
                Attente (2)
     
                If i = 1 Then SendKeys ("+{TAB}")
                SendKeys ("{TAB}")
                SendKeys (Coll)
     
                Continue = True
                Compte (12)
                If Continue = False Then GoTo Zapping
     
     
                Application.WindowState = xlMinimized
     
                Attente (2)
                SendKeys ("{TAB}")
                Attente (1)
     
                Compte (119)
     
                Application.WindowState = xlMinimized
     
                Attente (2)
                SendKeys ("{TAB}")
                Attente (1)
     
                Compte (110)
    Zapping:
            Next i
     
            Worksheets(1).Activate
            If Worksheets(2).Range("I1").Value = "" Then MsgBox ("Aucun 12 a solder")
            If Worksheets(2).Range("I1").Value <> "" Then MsgBox ("Partie 1 Terminée, Pensez à vous mettre sur les Brouillards")
     
        Else
     
            Fois = 1
            Do While (Worksheets(2).Range("J" & Trim(Str((Fois - 1) * 6 + 1))).Value <> "")
     
                If Worksheets(2).Range("I" & Trim(Str((Fois - 1) * 6 + 1))).Value = "0,00" Then GoTo Zapp
     
                Coll = Worksheets(2).Range("J" & Trim(Str((Fois - 1) * 6 + 1))).Value
                Application.WindowState = xlMinimized
     
                Attente (3)
                SendKeys ("+{TAB}")
                Attente (1)
                SendKeys ("{TAB}")
     
                SendKeys (Coll)
                Attente (2)
                Tabu (2)
     
                SendKeys ("{ENTER}")
     
                Attente (4)
                Tabu (5)
                SendKeys ("{ENTER}")
     
                Attente (4)
                SendKeys ("RESULTAT")
                Attente (1)
                Tabu (1)
                SendKeys ("{ENTER}")
     
     
                Attente (4)
                SendKeys ("AFFRE")
                Attente (1)
                Tabu (2)
                SendKeys ("Affectation du Résultat")
                Attente (1)
                Tabu (3)
                SendKeys ("{ENTER}")
     
     
                Attente (5)
                Tabu (3)
                Attente (1)
                Affre (1)
     
     
                Sens = Worksheets(2).Range("I" & Trim(Str((Fois - 1) * 6 + 2))).Value
                If Sens = "C " Then SendKeys ("D")
                If Sens = "D " Then SendKeys ("C")
                Attente (1)
                Tabu (1)
                SendKeys (Worksheets(2).Range("I" & Trim(Str((Fois - 1) * 6 + 1))).Value)
                Attente (1)
                Tabu (2)
                SendKeys ("{ENTER}")
     
     
            'Etude des 4 possibilités
                Sensdu12 = Sens
                Sensdu119 = Worksheets(2).Range("I" & Trim(Str((Fois - 1) * 6 + 4))).Value
                Sensdu110 = Worksheets(2).Range("I" & Trim(Str((Fois - 1) * 6 + 6))).Value
                Montantdu12 = Worksheets(2).Range("I" & Trim(Str((Fois - 1) * 6 + 1))).Value
                Montantdu119 = Worksheets(2).Range("I" & Trim(Str((Fois - 1) * 6 + 3))).Value
                Montantdu110 = Worksheets(2).Range("I" & Trim(Str((Fois - 1) * 6 + 5))).Value
     
     
    'Test Si ni 110, ni 119
     
                If ((Sensdu119 = "0,00") And (Sensdu110 = "0,00")) Then
                    If Sensdu12 = "C " Then Sensdu110 = "C "
                    If Sensdu12 = "D " Then Sensdu119 = "D "
                End If
     
     
                If ((Sensdu12 = "C ") And (Sensdu110 = "C ")) Or ((Sensdu12 = "D ") And (Sensdu119 = "D ")) Then
                    Attente (3)
                    Tabu (5)
                    Attente (1)
                    If Sens = "C " Then
                        Affre (2)
                        SendKeys ("C")
                    Else
                        Affre (3)
                        SendKeys ("D")
                    End If
                    Attente (1)
                    Tabu (1)
                    SendKeys (Montantdu12)
                    Attente (2)
                    Tabu (2)
                    SendKeys ("{ENTER}")
                    Attente (2)
                    Tabu (7)
                    Attente (2)
                    Tabu (2)
                End If
     
                If ((Sensdu12 = "C ") And (Sensdu119 = "D ")) Or ((Sensdu12 = "D ") And (Sensdu110 = "C ")) Then
                    Attente (3)
                    Tabu (5)
                    Attente (1)
                    If Sensdu12 = "C " Then
                        Affre (3)
                        SendKeys ("C")
                    Else
                        Affre (2)
                        SendKeys ("D")
                    End If
                    Attente (1)
                    Tabu (1)
     
                    If (CDec(Montantdu12) - CDec(Montantdu110) <= 0) Or (CDec(Montantdu12) - CDec(Montantdu110) <= 0) Then
                        SendKeys (Montantdu12)
                        Attente (2)
                        Tabu (2)
                        SendKeys ("{ENTER}")
                        Attente (3)
                        Tabu (7)
                        Attente (2)
                        Tabu (2)
                    Else
                        If Sensdu12 = "C " Then SendKeys (Montantdu119)
                        If Sensdu12 = "D " Then SendKeys (Montantdu110)
                        Attente (2)
                        Tabu (2)
                        SendKeys ("{ENTER}")
                        Attente (3)
                        Tabu (7)
                        Attente (1)
                        If Sensdu12 = "C " Then
                            Affre (2)
                            SendKeys ("C")
                        Else
                            Affre (3)
                            SendKeys ("D")
                        End If
                        Attente (1)
                        Tabu (1)
                        If Sensdu12 = "C " Then SendKeys (CDec(Montantdu12) - CDec(Montantdu119))
                        If Sensdu12 = "D " Then SendKeys (CDec(Montantdu12) - CDec(Montantdu110))
                        Attente (2)
                        Tabu (2)
                        SendKeys ("{ENTER}")
                        Attente (3)
                        Tabu (9)
                        Attente (2)
                        Tabu (2)
                    End If
                End If
     
                Attente (1)
                SendKeys ("{ENTER}")
                Attente (2)
                Tabu (5)
                SendKeys ("{ENTER}")
                Attente (2)
                SendKeys ("{ENTER}")
                Attente (3)
                SendKeys ("+{TAB}")
                SendKeys ("{TAB}")
                SendKeys (Coll)
                Attente (1)
                Tabu (2)
                SendKeys ("{ENTER}")
                Attente (7)
                Tabu (6)
                SendKeys ("{ENTER}")
                Attente (2)
                SendKeys ("{ENTER}")
                Attente (4)
     
    Zapp:
            Attente (1)
            Fois = Fois + 1
            Loop
            Worksheets(2).Activate
            Range("I1:J500").ClearContents
            Application.WindowState = xlMaximized
            Worksheets(1).Activate
            MsgBox ("Affectations Terminées")
        End If
     
     
    End Sub
     
    Sub Tabu(NbFois As Long)
        For i = 1 To NbFois
            SendKeys ("{TAB}")
        Next i
    End Sub
     
    Sub Attente(NbFois As Long)
        nvlleHeure = Hour(Now())
        nvlleMinute = Minute(Now())
        nvlleSeconde = Second(Now()) + NbFois
        waitTime = TimeSerial(nvlleHeure, nvlleMinute, nvlleSeconde)
        Application.Wait waitTime
    End Sub
     
    Sub Compte(NumCompte As Long)
     
        Attente (1)
        Tabu (2)
        Attente (1)
        Tabu (1)
        Attente (1)
        Tabu (1)
     
        SendKeys (NumCompte)
        Attente (1)
        Tabu (7)
     
        SendKeys ("{ENTER}")
     
        Attente (4)
     
        SendKeys ("+{TAB}")
     
        Attente (1)
     
    'Permet de faire tout sélectionner dans l'environnement del'autre fenètre et d'en copier le contenu
        SendKeys ("^a")
        SendKeys ("^c")
     
        Attente (2)
     
        Application.WindowState = xlMaximized
     
        Worksheets(2).Select
        Range("A1").Select
     
        ActiveSheet.PasteSpecial Format:="Texte", Link:=False, DisplayAsIcon:=False
        Cells.Replace What:=".", Replacement:="", LookAt:=xlPart, SearchOrder:=xlByRows, MatchCase:=False
     
        If Range("A1").Value <> "" Then
            Range("A1:D1").Select
            Selection.Insert Shift:=xlDown
        End If
     
        If NumCompte = 12 Then
            If Range("A27").Value = "Aucun compte n'a été trouvé" Then Continue = False
            If Range("B28").Value <> "" And Range("A27").Value <> "Aucun compte n'a été trouvé" Then
                If CLng(Range("B28").Value) = 0 Then Continue = False
            End If
        End If
        If Continue = False Then GoTo Esquive
     
     
     
        If Range("A27").Value <> "Aucun compte n'a été trouvé" Then
            Range("I" & Trim(Str(Fois + 1))).Value = Left(Range("B28").Value, Len(Range("B28").Value) - 1)
            Range("I" & Trim(Str(Fois + 2))).Value = Range("A28").Value
        Else
            Range("I" & Trim(Str(Fois + 1))).Value = "0,00"
            Range("I" & Trim(Str(Fois + 2))).Value = "0,00"
        End If
     
        If NumCompte = 12 Then Range("J" & Trim(Str(Fois + 1))).Value = Coll
     
        Fois = Fois + 2
     
    Esquive:
        Range("A1:H2000").ClearContents
     
    End Sub
     
    Sub Affre(NB As Long)
        Attente (2)
        SendKeys ("A")
        SendKeys ("F")
        SendKeys ("F")
        SendKeys ("R")
        SendKeys ("E")
        SendKeys (Trim(CStr(NB)))
        Attente (1)
        Tabu (1)
        Attente (1)
        SendKeys ("{ENTER}")
        Attente (2)
    End Sub

  2. #2
    Expert éminent
    Avatar de jurassic pork
    Homme Profil pro
    Bidouilleur
    Inscrit en
    Décembre 2008
    Messages
    4 101
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : Bidouilleur
    Secteur : Industrie

    Informations forums :
    Inscription : Décembre 2008
    Messages : 4 101
    Points : 9 596
    Points
    9 596
    Par défaut
    hello,
    as-tu essayé avec l'option;
    qui permet pour certaines macros d'exécuter du code VBA dans Libreoffice.

    Ami calmant, J.P

Discussions similaires

  1. [XL-2007] Conversion des macros Excel 2003 en Excel 2007
    Par fidecourt dans le forum Macros et VBA Excel
    Réponses: 4
    Dernier message: 28/05/2009, 19h18
  2. Conversion macros excel 2003 en 2007
    Par cadouxmi dans le forum Excel
    Réponses: 2
    Dernier message: 16/02/2009, 10h24
  3. Conversion macro Lotus 123 vers Excel
    Par Ismaël(l) dans le forum Macros et VBA Excel
    Réponses: 2
    Dernier message: 24/05/2007, 09h43
  4. Probleme de conversion entre . et , avec une macro excel
    Par fmris dans le forum Macros et VBA Excel
    Réponses: 2
    Dernier message: 18/01/2007, 23h26
  5. Pont entre macro excel et macro CALC
    Par EudonPio dans le forum Macros et VBA Excel
    Réponses: 3
    Dernier message: 31/12/2006, 08h32

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo