Formation Macros VBA Excel N2 23 boucle For Each parcourir selection

preview_player
Показать описание
Cours VBA en ligne sur:

Code VBA de la VIdéo:
Sub parcourirLesCellulesDeLaSelection()
'Video 23
Dim maCellule As Range
For Each maCellule In Selection
'maCellule.Value = maCellule.Address
maCellule.Value = maCellule.Column & " " & maCellule.Row
Next
End Sub
Рекомендации по теме