DEV Community

Cover image for "Day 15: Excel Essentials Unveiled - Sharing Today's Insights on My Learning Adventure! 📊🚀 #ExcelSkills #LearningJourney"
Nitin-bhatt46
Nitin-bhatt46

Posted on

1

"Day 15: Excel Essentials Unveiled - Sharing Today's Insights on My Learning Adventure! 📊🚀 #ExcelSkills #LearningJourney"

EXCEL - 14

STATISTICAL FUNCTION :-
AVERAGE
MEDIAN
MODE
STDEV.P and STDEV.S
VAR.P and VAR.S
CORREL
COVAR
RANK.EQ and RANK.AVG
PERCENTILE.INC and PERCENTILE.EXC
QUARTILE.INC and QUARTILE.EXC
Z.TEST
T.TEST
F.TEST
NORM.S.DIST and NORM.DIST
NORM.INV

EXPLANATION :-
AVERAGE:
Calculates the arithmetic mean of a range of values.
=AVERAGE(number1, number2, ...)

MEDIAN:
Returns the median (middle) value in a range of values.
=MEDIAN(number1, number2, ...)
MODE:
Returns the most frequently occurring value in a range of values.
=MODE(number1, number2, ...)

STDEV.P and STDEV.S:
Calculate the standard deviation of a sample (STDEV.S) or an entire population (STDEV.P).
=STDEV.P(number1, number2, ...)
=STDEV.S(number1, number2, ...)

VAR.P and VAR.S:

Calculate the variance of a sample (VAR.S) or an entire population (VAR.P).
=VAR.P(number1, number2, ...)
=VAR.S(number1, number2, ...)

CORREL:

Calculates the correlation coefficient between two sets of values.
=CORREL(array1, array2)

COVAR:

Calculates the covariance between two sets of values.
=COVAR(array1, array2)

RANK.EQ and RANK.AVG:

RANK.EQ assigns ranks to values in a data set, with ties receiving the same rank. RANK.AVG assigns average ranks to tied values.
=RANK.EQ(number, ref, [order])
=RANK.AVG(number, ref, [order])

PERCENTILE.INC and PERCENTILE.EXC:

PERCENTILE.INC returns the k-th percentile of values in a range. PERCENTILE.EXC excludes the actual data values from the calculation.
=PERCENTILE.INC(array, k)
=PERCENTILE.EXC(array, k)

QUARTILE.INC and QUARTILE.EXC:
QUARTILE.INC returns the k-th quartile of values in a range. QUARTILE.EXC excludes the actual data values from the calculation.
=QUARTILE.INC(array, quart)
=QUARTILE.EXC(array, quart)

Z.TEST:

Calculates the one-tailed probability-value of a z-test.
=Z.TEST(array, x, [sigma])

T.TEST:

Calculates the probability associated with a Student's t-test.
=T.TEST(array1, array2, [tails], [type])

F.TEST:

Calculates the two-tailed probability-value of an F-test.
=F.TEST(array1, array2)

NORM.S.DIST and NORM.DIST:

NORM.S.DIST returns the standard normal cumulative distribution function.
=NORM.S.DIST(z, [cumulative])
NORM.DIST returns the normal cumulative distribution function.
=NORM.DIST(x, [mean], [standard_dev], [cumulative])

NORM.INV:

Returns the inverse of the normal cumulative distribution.
=NORM.INV(probability, [mean], [standard_dev])
These functions are fundamental for various tasks in Excel, including text manipulation, logical operations, conditional formatting, and data analysis.

Follow me on this where every day will be added if i learn something new about it :- https://dev.to/nitinbhatt46

Thank you for your time.

API Trace View

How I Cut 22.3 Seconds Off an API Call with Sentry 👀

Struggling with slow API calls? Dan Mindru walks through how he used Sentry's new Trace View feature to shave off 22.3 seconds from an API call.

Get a practical walkthrough of how to identify bottlenecks, split tasks into multiple parallel tasks, identify slow AI model calls, and more.

Read more →

Top comments (0)

Qodo Takeover

Introducing Qodo Gen 1.0: Transform Your Workflow with Agentic AI

Rather than just generating snippets, our agents understand your entire project context, can make decisions, use tools, and carry out tasks autonomously.

Read full post

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay