Somme entre 3 colonnes pour chaque ligne sous VB10
Résolu/Fermé
A voir également:
- Somme entre 3 colonnes pour chaque ligne sous VB10
- Formule somme excel colonne - Guide
- Aller à la ligne excel - Guide
- Somme si couleur - Guide
- Partager photos en ligne - Guide
- Classer par ordre alphabétique excel plusieurs colonnes - Guide
1 réponse
Frenchie83
Messages postés
2240
Date d'inscription
lundi 6 mai 2013
Statut
Membre
Dernière intervention
11 août 2023
338
12 juil. 2015 à 11:23
12 juil. 2015 à 11:23
Bonjour
Sub SumEOH()
Application.ScreenUpdating = False
Set Ws = Sheets("Feuil1")
For i = 3 To [B10000].End(xlUp).Row
Cells(i, 7) = Cells(i, 4) - Cells(i, 5) + Cells(i, 6)
Next i
End Sub
Cdlt
Sub SumEOH()
Application.ScreenUpdating = False
Set Ws = Sheets("Feuil1")
For i = 3 To [B10000].End(xlUp).Row
Cells(i, 7) = Cells(i, 4) - Cells(i, 5) + Cells(i, 6)
Next i
End Sub
Cdlt
12 juil. 2015 à 11:32