La fonction StrReverse dans VBA permet de réaliser une macro pour pour inverser l'ordre d'une chaîne.
La fonction Strreverse
La fonction VBA Strreverse suit la syntaxe suivante :
Strreverse(variable)
Exemple de macro avec Strreverse
La macro
Sub nommacro()
Dim i As Integer
For i = 1 To 5
'Résultat dans Ligne de 1 à 5, Colonne 2
Cells(i, 2).Value = StrReverse(Cells(i, 1))Next i
End Sub
Les données
A | B | C | D | E | |
---|---|---|---|---|---|
1 | Fonction VBA Mid | ||||
2 | Fonction Excel STXT | ||||
3 | Fonction Caractères | ||||
4 | Fonction Substitue() | ||||
5 | Fonction Remplacer |
Le résultat
A | B | C | D | E | |
---|---|---|---|---|---|
1 | Fonction VBA Mid | diM ABV noitcnoF | |||
2 | Fonction Excel STXT | TXTS lecxE noitcnoF | |||
3 | Fonction Caractères | serètcaraC noitcnoF | |||
4 | Fonction Substitue() | )(eutitsbuS noitcnoF | |||
5 | Fonction Remplacer | recalpmeR noitcnoF |