How to find nth smallest value in a data table

How to find nth smallest value in a data table

This article shows you how to find nth smallest value in a data table by using the SMALL function. Syntax =SMALL(absolute data range reference, nth) Steps Start with =SMALL( function Select the range that contains the values $B$2:$G$7, Select the cell that contains...
How to find nth largest value in a data table

How to find nth largest value in a data table

This article shows you that how to find nth largest value by using the LARGE function. Syntax =LARGE(absolute data range reference, nth) Steps Start with =LARGE( function Select the range that contains the values $B$2:$G$7, Select the cell that contains nth value or...
How to count values by length

How to count values by length

This article shows how to count values by length based on their character count. This method can be helpful to check your data against invalid entries. It is also a good practice to use SUMPRODUCT and N functions together. Syntax =SUMPRODUCT(N(LEN(range)>character...
How to SUM 2d ranges with SUMPRODUCT

How to SUM 2d ranges with SUMPRODUCT

Summing values by a condition may sound easy. If not, please see Crunch Data Even Faster with the SUMIFS Function article as well. You can easily sum values by condition(s) with SUMIF and SUMIFS functions; with a limitation. The sum range and criteria ranges should...
How to SUM values across sheets

How to SUM values across sheets

To sum range of cells in the same worksheet is one of the basic concepts of Excel. What about summing values across sheets? In this article we will explain how to sum values across sheets. Syntax =SUM(first sheet : second sheet ! reference) Steps Start with =SUM( Type...