filmov
tv
Formation Macros VBA Excel N2 23 boucle For Each parcourir selection
Показать описание
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
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