A voir également:
- [Excel] [VBA] Création d'une fonction
- Fonction si et excel - Guide
- Liste déroulante excel - Guide
- Déplacer une colonne excel - Guide
- Fonction moyenne excel - Guide
- Creation compte gmail - Guide
1 réponse
Utilisateur anonyme
6 juil. 2007 à 13:39
6 juil. 2007 à 13:39
Bonjour,
Suggestion :
Lupin
Suggestion :
Option Explicit ' Public Function SOMME_VISIBLE(Numéro_colonne As Integer) As Single Dim Plage As Range, Cellule As Range Application.Volatile 'Set Plage = Range(Cells(7, [Numéro_colonne]), Cells(6 + [nb_enregistrement], [Numéro_colonne])) Set Plage = Range("A1:B2") SOMME_VISIBLE = 0 For Each Cellule In Plage If Cellule.Rows.Hidden = False Then SOMME_VISIBLE = SOMME_VISIBLE + Cellule.Value End If Next End Function '
Lupin