VBA : Actualisation
Résolu/Fermé
piroc
Messages postés
61
Date d'inscription
vendredi 26 octobre 2012
Statut
Membre
Dernière intervention
17 avril 2015
-
Modifié par pijaku le 17/04/2015 à 13:45
pijaku Messages postés 12263 Date d'inscription jeudi 15 mai 2008 Statut Modérateur Dernière intervention 4 janvier 2024 - 17 avril 2015 à 14:40
pijaku Messages postés 12263 Date d'inscription jeudi 15 mai 2008 Statut Modérateur Dernière intervention 4 janvier 2024 - 17 avril 2015 à 14:40
A voir également:
- VBA : Actualisation
- Mkdir vba ✓ - Forum VB / VBA
- Excel compter cellule couleur sans vba - Guide
- Vba range avec variable ✓ - Forum VB / VBA
- Autofill vba ✓ - Forum Excel
- L'indice n'appartient pas à la sélection vba ✓ - Forum Programmation
1 réponse
pijaku
Messages postés
12263
Date d'inscription
jeudi 15 mai 2008
Statut
Modérateur
Dernière intervention
4 janvier 2024
2 752
17 avril 2015 à 13:48
17 avril 2015 à 13:48
Bonjour,
Sans bouton, essaie d'ajouter
Sans bouton, essaie d'ajouter
Application.Volatileen début de ta fonction, comme ceci :
Option Explicit Function SommeCouleur(Zone As Range, CRef As Range, X, Y) Dim c, Cel, S Application.Volatile c = CRef.Interior.ColorIndex S = 0 For Each Cel In Zone If Cel.Interior.ColorIndex = c Then S = S + Cel.Offset(Y, X) End If Next SommeCouleur = S End Function
17 avril 2015 à 14:34
Merci beaucoup !
17 avril 2015 à 14:40
A+