Excellency

View Original

The QUARTILE.INC function

The QUARTILE.INC function is a statistical function which calculates the first, second, and third quartile values of a range of data as well as the min and max. Quartiles can be understood as the value which represents a marker separating data into equal buckets. Each bucket contains exactly 25% of the total results from the dataset. The INC refers to the fact that if there is an odd number of values in the total dataset, the median value is included when calculating the first and third quartile.

This is the format of the QUARTILE.INC function:

=QUARTILE.INC(DATA RANGE, QUARTILE)

Here is an example of the QUARTILE.INC function:

=QUARTILE.INC({1,2,3,4,5},1) = 2 

QUARTILE.INC returning the first quartile of the values in the selected range

This function is valuable when taking on any statistical analysis within any dataset. The quartiles of a sample of data should be able to signal something about the data being looked at. While it may not provide a definitive answer, it can lead to more critical analysis. It can also signal any skew there may be in the data.

An example of a functional implementation of this would be mapping out the distribution of total transaction amounts. By determining your Min, Q1, Q2, Q3, and Max values, you will have a visual representation of how much your customers are consistently willing to spend on a single transaction. This can help with promotional planning and pricing decisions.

=QUARTILE.INC(RANGE WITH TRANSACTION AMOUNTS, 0)
=QUARTILE.INC(RANGE WITH TRANSACTION AMOUNTS, 1)
=QUARTILE.INC(RANGE WITH TRANSACTION AMOUNTS, 2)
=QUARTILE.INC(RANGE WITH TRANSACTION AMOUNTS, 3)
=QUARTILE.INC(RANGE WITH TRANSACTION AMOUNTS, 4)