Assignment Attachment 1871 1739334667
Assignment Attachment 1871 1739334667
CIT: 1-C
G.R.NO.155
CAS
ASSIGNMENT #4
Describe 5 Functions of Excel in detail
Excel Function
An Excel function is a predefined formula that performs calculations,
manipulates data, or automates tasks within a spreadsheet. Functions take
input values, known as arguments, process them, and return a result.
Purpose:
The SUM() function is used to add multiple numbers, cell values, or a range
of numbers together. It helps in quickly calculating the total of a dataset
without manually adding each number.
Function:
Common Uses:-
Example:
=AVERAGE(B1:B5)
=SUM(10, 20, 30)
2. AVERAGE() Function:
Purpose:
The AVERAGE() function calculates the arithmetic mean of a group of
numbers, which is the sum of the numbers divided by the count of those
numbers.
Function:
It automatically ignores empty cells and text but includes numerical
values.
It provides a quick way to analyze central tendency in a dataset.
It is commonly used in statistical analysis and performance evaluation.
Common Uses:
Determining the average sales per month.
Calculating student grade averages.
Analyzing performance trends over time.
Example
=AVERAGE(B1:B5)
=AVERAGE(100, 85, 90, 95)
3. SUMPRODUCT() Function
Purpose:
The SUMPRODUCT() function multiplies corresponding values in two or more
arrays and then sums the resulting products. It is a powerful function used
for weighted calculations.
Function:
Common uses:
Example:
=SUMPRODUCT(C1:C5, D1:D5)
=SUMPRODUCT({2,3,4}, {5,6,7})
4. AND() Function
Purpose:
The AND() function is a logical function that checks whether multiple
conditions are all true. It returns TRUE if all conditions are met and FALSE if
any condition is not met.
Function:
It evaluates two or more logical expressions together.
If all the conditions are true, it returns TRUE; otherwise, it returns
FALSE.
It is often used inside IF() statements to create more complex decision-
making formulas.
The function is useful when multiple criteria must be satisfied
simultaneously.
Common Uses:
Example:
=AND(E1>=50, F1>=50)
=AND(A1>50, B1<100, C1=75)
5. WEEKDAY() Function:-
Purpose:
The WEEKDAY() function returns a number representing the day of the week
for a given date. It helps in determining the weekday name (Monday,
Tuesday, etc.) based on a date input.
Function:
Common Uses:
Example:
=WEEKDAY(G1, 1)
=WEEKDAY(DATE(2025, 2, 14))