DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Sub kod()
Application.ScreenUpdating = False
son = [a65536].End(3).Row
Top = 0
For i = 1 To son
If Cells(i, "a").Font.Bold = True Then
Top = Top + Cells(i, "a")
Else
End If
Next i
Range("a" & son + 1) = Top
Application.ScreenUpdating = True
End Sub
Function BOLD_TOPLA(Alan As Range)
Dim Veri As Range
Application.Volatile True
For Each Veri In Alan
If Veri.Font.Bold = True Then
BOLD_TOPLA = BOLD_TOPLA + Veri.Value
End If
Next
End Function
=BOLD_TOPLA(A1:A100)