Slicer

A slicer is a control that lets a user filter aPivot Tableor anExcel Tableusing buttons. A slicer provides the same function as using filter controls to filter a list. However, instead of drop-down menus, slicers provide large, friendly buttons that are always visible. The buttons are created automatically based on values in the data. In the example shown, the slicer is set up to filter on the Department field in the data....

April 14, 2025 · 1 min · 72 words · Laura Castillo

SLN Function

By default, the VDB function will switch to straight line calculation. VDB stands for variable…

April 14, 2025 · 1 min · 15 words · Christopher Coleman

SLOPE Function

A regression line is a “best fit” line based on known data points. The slope of a line is a measure of steepness. The values returned by LINEST include slope, intercept, standard error values, and more.

April 14, 2025 · 1 min · 36 words · Michelle Moore

SMALL Function

from a set of numeric data. The SMALL function takes twoarguments,arrayandk.Arrayis anarrayorrangeof numeric values. The argumentkrepresents position or rank. For example, to return the smallest value inarray, provide 1 fork. To return the fifth smallest value inarray, provide 5 fork. To get nthlargestvalues, see theLARGE function. RANK can rank values from largest to smallest (i.e. top sales) as well as smallest to largest (i.e. MIN Function The Excel MIN function returns the smallest numeric value in the data provided....

April 14, 2025 · 1 min · 94 words · Dr. Alexander Hill

Smaller of two values

MIN function TheMIN functionreturns the smallest numeric value in the data provided. The MIN function can be used to return the smallest value fromanytype of numeric data. Otherwise return C5". This is a perfectly valid Excel formula, and you will often encounter IF formulas that follow this structure. The MIN function ignores empty cells, the logical values TRUE and FALSE, and text values. More than one condition can be tested by nesting IF functions....

April 14, 2025 · 1 min · 74 words · Dr. Joel Harris MD

Snap to grid

Related videos The videos below demonstrate this shortcut.

April 14, 2025 · 1 min · 8 words · Lisa Lozano

Sort and extract unique values

Explanation Note: the core idea of this formula is adapted from an example inMike Girvin’sexcellent bookControl+Shift+Enter. The example shown uses several formulas, which are described below. This results in a two-dimensional array, 9 columns x 9 rows, filled with TRUE and FALSE values. Thedouble negative(–) is used to coerce the TRUE FALSE values to 1s and zeros. Otherwise, each cell will only show the first ranking value in the array that is returned....

April 14, 2025 · 1 min · 151 words · Dr. Juan Webb Jr.

SORT and SORTBY with multiple columns

In this worksheet, we have a list of names, projects, values, and regions. This data is not sorted. Lets start with the SORTBY function. Now, the SORTBY function is designed to sort data by more than one dimension at the same time. A dimension can be a corresponding column, a range of cells, or an array. For both SORT and SORTBY functions,sort_orderis 1 for ascending order, and -1 for descending order....

April 14, 2025 · 2 min · 224 words · Brett Baker

Sort birthdays by month and day

This is done with the TEXT function, which we use to extract the month and day. TheSORTBY functioncan sort by one or more arrays. For thearrayargument, we provide the full set ofdata(B5:C16). “0727” for the date in cell C5). Notice names and birthdays are now sorted by month, then by day. In other words, the birthdays are sorted in the order they will occur throughout the year. For the purposes of this example, this works fine....

April 14, 2025 · 1 min · 169 words · Patricia Bowen

Sort by custom list

Explanation In this example, we are sorting a table with 10 rows and 3 columns. The goal is to sort the table using values in the Group column in this same custom order. This array is passed into the SORTBY function as theby_array1argument. The range or array used to sort does not need to appear in results. MATCH supports approximate and exact matching, andwildcards(* ?) Often, MATCH is combined with the…

April 14, 2025 · 1 min · 71 words · Catherine Turner

Sort by custom list with SORTBY

One challenge that comes up frequently when sorting is a need to sort in a custom order. The SORTBY requires thearrayandsort_byarguments to have compatible dimensions. So, to work out a solution, let’s start by adding a helper column. Our goal here is to create an array with values that represent the required sort order. How can we do that? Well, theMATCH functionis actually a good solution here. What we want is a position for each stage....

April 14, 2025 · 1 min · 179 words · Daniel Leon

Sort by one column

Explanation The SORT function requires very little configuration. Forarray, we provide entire range, B5:D14. Ascending vs. Descending Data is sorted in ascending order (A-Z) by default. This behavior is controlled by an optional third argument,sort_order. Values can be sorted by one or more columns. SORT returns a dynamic array of results.

April 14, 2025 · 1 min · 51 words · Erik Williams

Sort by substring

Explanation We have a list of 12 codes in Column B. The 2-letter prefix and 4-digit number should be ignored during sorting. To do this, we use a combination of theTEXTAFTER functionand theTEXTBEFORE function. This can be a bit confusing. The main thing to keep in mind is that TEXTBEFORE is working with theoutputfrom TEXTAFTER. The result looks like this: In this version, we’ve incorporated theLET functionto keep things streamlined....

April 14, 2025 · 1 min · 118 words · Tony Mason