0% found this document useful (0 votes)
9 views3 pages

Statistics

The document outlines various statistical functions used to analyze data, including AVERAGE, COUNT, COUNTA, COUNTIF, and others. It provides examples of how to apply these functions to calculate metrics such as the number of students, attendance, passing rates, and average marks in different subjects. Additionally, it includes a sample dataset to illustrate the calculations for determining the best and worst marks.

Uploaded by

Saleh Raouf
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
9 views3 pages

Statistics

The document outlines various statistical functions used to analyze data, including AVERAGE, COUNT, COUNTA, COUNTIF, and others. It provides examples of how to apply these functions to calculate metrics such as the number of students, attendance, passing rates, and average marks in different subjects. Additionally, it includes a sample dataset to illustrate the calculations for determining the best and worst marks.

Uploaded by

Saleh Raouf
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 3

Statistical Function

Statistical functions are used to describe quantities of data.


For example, statistical functions can determine:

✓ the average, standard deviation, or variance of a range of data.

✓ 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?

You might also like