بعد التحيه
ارجو المساعده فى معادله لجمع الرمز X المتواجد فى الخليه الصفراء فقط
معادله وليس كود ... ممنوع رفع الملف مضغوط طالما حجمه صغير , تم اعادة رفع الملف بدون ضغط تجنباً لإهدار الوقت Book1.xlsx
It is forbidden to upload a compressed file as long as its size is small. The file was re-uploaded without compression to avoid wasting time
تفضل يمكن ذلك بدالة معرفة ... وإذا كنت تريد ايجاد حل لطلبك بالمعادلات العادية فيمكنك مشاهدة هذا الفيديو Count X.xlsm
= CountCellsByColor (B1: L1, G7)
Prefer to do this with a knowledge function ...
CODE
Function CountCellsByColor(rData As Range, cellRefColor As Range) As Long
Dim indRefColor As Long
Dim cellCurrent As Range
Dim cntRes As Long
Application.Volatile
cntRes = 0
indRefColor = cellRefColor.Cells(1, 1).Interior.Color
For Each cellCurrent In rData
If indRefColor = cellCurrent.Interior.Color Then
cntRes = cntRes + 1
End If
Next cellCurrent