home *** CD-ROM | disk | FTP | other *** search
- Attribute VB_Name = "Summe"
- Function Summegelb(Bereich As Object)
- s = 0
- For Each a In Bereich
- If a.Interior.ColorIndex = 6 Then
- s = s + a.Value
- End If
- Next
- Summegelb = s
- End Function
-
- Function Summeweiss(Bereich As Object)
- s = 0
- For Each a In Bereich
- If a.Interior.ColorIndex = xlNone Then
- s = s + a.Value
- End If
- Next
- Summeweiss = s
- End Function
-
-