Legacy Excel

In practical terms, this meansarray formulas"just work". In Legacy Excel, most array formulas still need to be entered with control + shift + enter. Do not add the curly braces manually. In current versions of Excel, array formulas just work.

April 14, 2025 · 1 min · 40 words · Shawn Reyes

LEN Function

LEN takes just one argument,text. LEN will also count characters in numbers, but number formatting is not included. RIGHT returns the text to therightof that position.Full explanation here. For example, given the character (U+1F642) as input, the LEN function returns two. For these characters, the LEN function returns a length of one. For these characters, the LEN function returns a length of two. For example, =RIGHT(“apple”,3) returns “ple”. For example, =LEFT(“apple”,3) returns “app”....

April 14, 2025 · 1 min · 78 words · Phyllis Franklin

LET Function

LET can handle up to 126 name/value pairs, but only the first name/value pair is required. The scope of each variable is the current LET function, and nested functions below. The final result is a calculation or a variable previously calculated. The result from LET always appears as thelast argumentto the function. The names used in LET must begin with a letter and are not case-sensitive. The LET function is often combined with theLAMBDA functionas a way to make a complex formula easier to use....

April 14, 2025 · 1 min · 208 words · Courtney Nunez

Lifting

The term “lifting” refers to anarray calculation behaviorin Excel formulas. The result is an array with the same dimensions as the input array. Lifting is a built-in behavior that happens automatically.

April 14, 2025 · 1 min · 31 words · Julie Roberts

Line Chart

Line charts are a good way to show change or trends over time. Line charts can be customized to show or hide data markers of various shapes and sizes. The data itself is daily stock market information for Microsoft Corporation over a period of more than 30 years. Only the closing price is plotted.

April 14, 2025 · 1 min · 54 words · James Nielsen

Line chart actual with forecast

This chart shows actuals so far in a solid line with forecast numbers in a dashed line.

April 14, 2025 · 1 min · 17 words · Christopher Cooke

Line chart with many data points

This example shows a line chart plotted with over 8000 data points. The data itself is daily stock market information for Microsoft Corporation over a period of more than 30 years. Only the closing price is plotted. When you first create a line chart with this much data, the x-axis will be crowded with labels. The key is to adjust the bounds and units for the in the Axis options area....

April 14, 2025 · 1 min · 175 words · Jeffrey Hardy

LINEST Function

The LINEST function returns more than one value at a time in anarray. In its most basic form, LINEST returns just intercept and slope. Optionally, LINEST can also return 10 separate statistics for the regression analysis as shown in the worksheet above. InExcel 365, which supportsdynamic arrays, the array of values will spill into cells in the worksheet automatically. In other versions of Excel, you must enter the LINEST as amulti-cell array formulato see all values....

April 14, 2025 · 1 min · 169 words · Amanda Dalton

Link to multiple sheets

Explanation This formula relies onconcatenationto assemble a valid location for the HYPERLINK function. The formula then resolves to: Which returns a valid link. The cell value in column C is entirely arbitrary and can be any cell you like. For more link syntax examples, seeHYPERLINK. you could use HYPERLINK to create a clickable hyperlink with a formula. The throw in of information to be returned is specified asinfo_type. it’s possible for you to use INDEX to retrieve individual values, or entire rows and columns....

April 14, 2025 · 1 min · 98 words · Annette James

List duplicate values with FILTER

Abstract Transcript In this video, we’ll look at how to list duplicate values. In other words, values that appear more than once in a set of data. How can we list names that appear more than once, along with a count? Now, forcriteria, we want exactly the same list. As you might guess, we can use a list like this with theFILTER function. I’ll first copy the COUNTIF formula to the clipboard, then I’ll delete the formula....

April 14, 2025 · 1 min · 183 words · Charles Morgan

List holidays between two dates

Note: theTEXTJOIN functionis a new function available in Office 365 and Excel 2019. More than one condition can be tested by nesting IF functions.

April 14, 2025 · 1 min · 24 words · Crystal Foster

List missing values

For convenience,list1(B5:B16) andlist2(D5:D12) arenamed ranges. Also notice that there are 4 zeros in the array.A zero value indicates a name inlist1thatwas notfound inlist2. The 1’s in the array indicate a name inlist1thatwasfound inlist2. Any non-zero number becomes FALSE, and any zero value becomes TRUE. This is what we need to report the missing names. If any data changes, FILTER will recalculate and return an updated list. The output from FILTER is dynamic....

April 14, 2025 · 1 min · 120 words · Fernando Diaz

List most frequently occurring numbers

The rest of the formula just constructs a filtered array for MODE to use in each row. As you copy the formula down into subsequent rows, you will likely run into the #N/A error. For example, =MODE(1,2,4,4,5,5,5,6) returns 5. MATCH supports approximate and exact matching, andwildcards(* ?) Often, MATCH is combined with the…

April 14, 2025 · 1 min · 53 words · Kristina Bowman