Statistics
Statistics
✓ the number of values in a range, the largest value in a range, and the smallest value in a
range.
*******************************************************************
(Function) (Description) الشرح
AVERAGE Returns the average of its arguments إيجاد متوسط (معدل) مجموعة من األرقام
Counts how many numbers are in the
COUNT عد الخاليا التي تحتوي على أرقام
list of arguments
Counts how many values are in the list عد الخاليا التي ليستتتا غار(ة (ت تتتمو ال تتتو
COUNTA
of arguments )واألرقام و(يرها
Counts the number of cells within a ًا معي اا (ملو" أكبر من عد الخاليا التي تطابق شتر ا
COUNTIF
range that meets the given criteria )"10
Counts the number of cells within a
COUNTIFS عد الخاليا التي تطابق عدة شروً محددة
range that meets multiple criteria
Returns the maximum value in a list of
MAX إيجاد أكبر رقم غي مجموعة أرقام
arguments
إيجاد الرقم األوستتط غي قاةمة أرقام مرتبة (إ ا كا
Returns the median of the given
MEDIAN جوًيتتام يتتم مستتتتتتاق متتوستتتتط الرقمتيتن
ا العتتدد
numbers
)األوسطين
Returns the minimum value in a list of
MIN إيجاد أصغر رقم غي مجموعة أرقام
arguments
Calculates variance based on the entire مستتتتاق مدت ارت تتتتار األرقامم باغتراك أ لدي
VAR.P
population ًميع البيارات
Returns the rank of a number in a list يخبرك أين يقع رقم غي قتاةمتة مرتبتة (ملتو األولم
RANK
of numbers ).اللاريم اللالثم إلخ
مستتتتاق مدت ارت تتتتار األرقامم باغتراك أ لدي
Calculates standard deviation based on
STDEV.P ًتمتيتع التبتيتتارتتات (امرتحترام التمتعتيتتاري مترتتبتط
the entire population
)بالتباين
Example:
A B C D
1 NAME ACCOUNTING MANAGEMENT STATISTICS
2 A 61 55 55
3 B ABSENT 40 ABSENT
4 C 92 65 80
5 D 85 45 ABSENT
6 E 67 29 17
7 F 52 ABSENT 65
8 G 35 17 6
9 H 68 83 90
10 I 71 ABSENT 86
11 J 61 50 ABSENT
12 No. of Students COUNTA(B2:B11) COUNTA(C2:C11) COUNTA(D2:D11)
No. of students
13 COUNT(B2:B11) COUNT(C2:C11) COUNT(D2:D11)
attended
No. of Passed
14 =COUNTIF(B2:B11,">50") =COUNTIF(C2:C11,">50") =COUNTIF(D2:D11,">50")
Students
Students who get
15 =COUNTIF(B2:B11,">90") =COUNTIF(C2:C11,">90") =COUNTIF(D2:D11,">90")
excellent
16
Students who get =COUNTIFS(B2:B11,">=80",B2: =COUNTIFS(C2:C11,">=80",C2: =COUNTIFS(D2:D11,">=80",D2:
V.Good B11,"<=90") C11,"<=90") D11,"<=90")
17 Best Mark =MAX(B2:B11) =MAX(C2:C11) =MAX(D2:D11)
18 Worst Mark =MIN(B2:B11) =MIN(C2:C11) =MIN(D2:D11)
19 Average Mark =AVERAGE(B2:B11) =AVERAGE(B2:B11) =AVERAGE(B2:B11)
Required:
1. Calculate the number of students in each subject?
2. Calculate the number of students that attended the exam for each subject?
3. Calculate the number of passed students in each subject?
4. Calculate the number of students who got excellent and those who got v. good in each
subject?
Determine the student who got the best mark in each subject and the one who got the worst
mark?
What is the average mark in each subject?