Maximize current workbook window

About This Shortcut Maximize or restores the selected workbook window. This shortcut acts as a toggle. Related videos The videos below demonstrate this shortcut. Shortcuts to navigate workbooks

April 14, 2025 · 1 min · 28 words · Melissa Sandoval

Maximum change

This is a classic example of anarray formula. Excel Table For convenience, all data is in anExcel Tablenameddatain the range B5:D16. If you are new to Excel Tables,this article provides an overview. Also see this short video: Array formula This is a classic array formula problem. Subtracting the lows from the highs is anarray operationthat requires special handling in older versions of Excel. In Legacy Excel, you must enter the formula with control + shift + enter....

April 14, 2025 · 2 min · 225 words · Steven Kelly

Maximum if multiple criteria

In other words, we want the max value after applying multiple criteria. The easiest way to solve this problem is with the MAXIFS function. However, if you need more flexibility (i.e. Each approach is explained below. Excel Table For convenience, all data is in anExcel Tablenameddatain the range B5:D16. If you are new to Excel Tables,this article provides an overview. All conditions must be true in order for value to be considered....

April 14, 2025 · 2 min · 229 words · Jennifer Villarreal

Maximum value

Explanation In this example, the goal is to get the maximum quiz score (i.e. MAX will return the maximum value in the data provided. Text values and empty cells are ignored. Because the quiz scores are all together, the data is supplied to MAX as a single range. MAX is fully automatic. If data changes, MAX will automatically recalculate. To calculate a maximum value while ignoring errors,see this example. LARGE function TheLARGE functioncan also be used to return the maximum value in a set of data....

April 14, 2025 · 1 min · 99 words · Jonathan Taylor

Maximum value if

The easiest way to solve this problem is with the MAXIFS function. However, there are actually several options. If you need more flexibility (i.e. Each approach is explained below. Excel Table For convenience, all data is in anExcel Tablenameddatain the range B5:C16. If you are new to Excel Tables,this article provides an overview. MAXIFS function TheMAXIFS functioncan get the maximum value in a range based on one or more criteria....

April 14, 2025 · 2 min · 240 words · Ryan Fritz

MDETERM Function

The determinant is a special number that can help characterize some properties of the matrix. For example, if the determinant is zero, the matrix will not have an inverse. The result from MMULT is anarraythat contains the same number of rows asarray1and the same number of columns asarray2. This resulting matrix contains ones on the main diagonal and zeros in every other position. MINVERSE Function The Excel MINVERSE function returns the inverse matrix of a given array....

April 14, 2025 · 1 min · 108 words · Margaret Golden

MDURATION Function

Excel’s MDURATION function returns the modifiedMacauley durationfor an assumed par value of $100. Thesettlementdate is 15-Dec-2017, thematuritydate is 15-Sep-2027, and the day countbasisis US (NASD) 30/360. The formula in F5 is: and returns 7.55 years. Entering dates In Excel,dates are serial numbers. To enter valid dates directly inside a function, you’re able to use theDATE function. The DISC function allows 5 options (0-4) and defaults to zero, which specifies US 30/360basis....

April 14, 2025 · 1 min · 80 words · Timothy Hines

MEDIAN Function

The calculation performed by MEDIAN varies according to the number of numeric values provided. When the number is odd, MEDIAN returns the middle number in the group. When the number is even, MEDIAN returns the average of the two numbers in the middle. The MEDIAN function takes multipleargumentsin the formnumber1,number2,number3, etc. Arguments can be a hardcoded constant, a cell reference, or a range, in any combination. MEDIAN ignores empty cells, text values, and the logical values TRUE and FALSE....

April 14, 2025 · 1 min · 111 words · Amanda Dixon

Merge tables with VLOOKUP

Explanation This is a standard “exact match” VLOOKUP formula with one exception: the column index is calculated using the COLUMN function. When the COLUMN function is used without any arguments, it returns a number that corresponds to the current column. In this case, the first instance of the formula in column E returns 5, since column E is the 5th column in the worksheet. We don’t actually want to retrieve data from the 5th column of the customer table (there are only 3 columns total) so we need to subtract 3 from 5 to get the number 2, which is used to retrieve Name from customer data:...

April 14, 2025 · 2 min · 324 words · Christina Garcia

MID Function

MID takes three arguments, all of which are required. The firstargument,text, is the text string to start with. The second argument,start_num, is the position of the first character to extract. The third argument,num_chars, is the number of characters to extract. Ifnum_charsis greater than the number of characters available, MID returns all remaining characters. This can be done by combining MID with the FIND function. We then subtract 1 and the result goes into the MID function as thenum_charsargument....

April 14, 2025 · 2 min · 334 words · Thomas Gonzalez

MIN Function

The MIN function can be used to return the smallest value from any punch in of numeric data. The MIN function takes multipleargumentsin the formnumber1,number2,number3, etc. up to 255 total. Arguments can be a hardcoded constant, acell reference, or arange, in any combination. MIN ignores empty cells,text values, and the logical values TRUE and FALSE. MAX ignores empty cells, the logical values TRUE and FALSE, and text values. from a set of numeric data....

April 14, 2025 · 1 min · 108 words · Teresa Moyer

MINA Function

Like theMIN function, MINA ignores empty cells. The MINA function takes multipleargumentsin the formnumber1,number2,number3, etc. up to 255 total. Arguments can be a hardcoded constant, a cell reference, or a range, in any combination. While the MIN functionignoresthe logical and text values completely, the MINA functionincludesthese values when calculating a minimum value. The MIN function ignores empty cells, the logical values TRUE and FALSE, and text values. MAX Function The Excel MAX function returns the largest numeric value in the data provided....

April 14, 2025 · 1 min · 135 words · Justin Mills

MINIFS Function

Each condition is provided with a separaterangeandcriteria. The syntax used to apply criteria in MINIFS is a bit tricky because it is unusual in Excel. See below for details. The syntax for the MINIFS function depends on the criteria being evaluated. Each condition is provided with a separaterangeandcriteria. With these three arguments, MINIFS returns the minimum number inmin_rangewhere corresponding cells inrange1meet the condition set bycriteria1. Additional conditions are applied using range/criteria pairs....

April 14, 2025 · 2 min · 216 words · Jamie Jones