亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

Table of Contents
Key Takeaways:
XLOOKUP – An Introduction
=XLOOKUP(
H10," >=XLOOKUP(H10,
$C$9:$C$12)" >=XLOOKUP(H10,$E$9:$E$12,$C$9:$C$12)
“No Product Found”)" >=XLOOKUP(H10,$E$9:$E$12,$C$9:$C$12,“No Product Found”)
-1)" >=XLOOKUP(E5,B5:B10,C5:C10,,-1)
=XLOOKUP(E6,$B$4:$B$10,$C$4:$C$10,,2)
$C$6:$F$6)" >=XLOOKUP(H6,$C$5:$F$5,$C$6:$F$6)
$C$4:$E$7)" >=XLOOKUP(G5,$B$4:$B$7,$C$4:$E$7)
-1)" >=XLOOKUP(F5,C4:C30,D4:D30,,,-1)
Home Software Tutorial Office Software How to use the XLOOKUP function in Excel with 7 Examples!

How to use the XLOOKUP function in Excel with 7 Examples!

May 20, 2025 am 02:56 AM

Excel is a strong tool that can assist you in many ways with data organization and analysis. The XLOOKUP function in Excel is among its most crucial features. You can use this flexible tool to look up a specific value in a group of cells and have the corresponding value from another column returned. In Excel 2019 and later versions, the XLOOKUP function was added as a new feature. Due to its adaptability and simplicity of use, XLOOKUP in Excel has quickly become one of the most used functions for data analysis and manipulation.

Key Takeaways:

  • The Excel XLOOKUP function is designed to improve upon older lookup functions like VLOOKUP and HLOOKUP by providing more flexible matching options and a simpler, more straightforward syntax for users.
  • Unlike VLOOKUP, which is limited to searching the first column of a table and returning a value in the same row from a specified column, XLOOKUP can look up a value in any column or row and return a result from any other column or row, horizontally or vertically. This eliminates the need for complex index and match combinations, simplifying formulae.
  • XLOOKUP typically returns only the first match found for the lookup value, which can be a limitation when multiple matches exist. However, it is still a powerful function for precise lookups and can handle array formulas, allowing users to perform searches that return multiple values when necessary.

Ever wanted to lookup values in Excel? Which of the following Excel function did you use:

The dynamic one – VLOOKUP? The horizontal one – HLOOKUP? The complicated one – INDEX MATCH?

Even though the above Excel functions can get the job done, they come with their own limitations. The solution to this is to use the brand new Excel function introduced in Microsoft 365 – XLOOKUP!?

If you are using any of the older versions of Excel (2010, 2013, 2016, 2019) you won’t be able to use this function.

XLOOKUP is a versatile and outstanding replacement for the above-mentioned Excel functions. It allows you to quickly lookup values in a data set (just like VLOOKUP Excel) with additional flexibility and advantages like:

  • It can lookup data to the right or left of the lookup values.
  • It looks for an exact match by default. You do not have to enter an additional argument for it.
  • It allows you to provide a custom value or text if your search result is not found.
  • It can perform a partial match lookup using wildcards.
  • It can search for values both horizontally and vertically.
  • It can return a range instead of a single value which spills out the results.
  • It allows you to find the last occurrence in your data.

XLOOKUP – An Introduction

What does it do?

Excel XLOOKUP can be used to search an array for a specific value and returns the value in the same row from another array.

  • It can search the value both horizontally and vertically,
  • Perform an exact or approximate match,
  • Use wildcards,
  • Return a custom text when no result is found,
  • Doesn’t even have the restriction of the return array to be on the right of the lookup array.

Isn’t that AMAZING? It is a power-packed function with so many advantages!

Formula breakdown:

=XLOOKUP (lookup_value, lookup_array, return_array, [if_not_found], [match_mode], [search_mode])

where:

  • lookup_value – the value you want to search;
  • lookup_array – the range or array where you want to search the value;
  • return_array – the range or array from which you want the result;
  • [if_not_found] – the value you want to display if there are no results found;
  • [match_mode]
    • 0 – Exact Match (if no result found, then error)
    • -1 – Exact or next smaller (if no result found, then the next smaller value will be displayed)
    • 1 – Exact or next larger (if no result found, then the next larger value will be displayed)
    • 2 – Wildcards
  • [search_mode]?
    • 1 – to search from first
    • -1 – to search from last
    • 2 – binary search ascending
    • -2 – binary search descending

Follow the step-by-step tutorial below and make sure to download the Excel workbook to follow along:

download excel workbookXlookup-Function-in-Excel.xlsx

Now that you are comfortable with the syntax of this incredible function, let’s dive into a few examples to understand how to use Excel XLOOKUP!

How to use XLOOKUP in Excel?

In this example below, there are two tables:

  • Stocklist containing the product’s SKU, name, price, and cost.
  • Orders Table with its quantity mentioned

You want to extract the price of the products from the stock list table using XLOOKUP.

How to use the XLOOKUP function in Excel with 7 Examples!

STEP 1: We need to enter the XLOOKUP function in a blank cell

=XLOOKUP(

How to use the XLOOKUP function in Excel with 7 Examples!

STEP 2:Enter the first XLOOKUP argument – Lookup_value (product’s SKU that you are looking for)

=XLOOKUP(H10,

How to use the XLOOKUP function in Excel with 7 Examples!

STEP 3: Enter the second XLOOKUP argument – Lookup_array (the array that contains all product SKUs)

=XLOOKUP(H10,$E$9:$E$12

How to use the XLOOKUP function in Excel with 7 Examples!

Ensure that you press?F4 so that you can lock the table range

STEP 4: Enter the third XLOOKUP argument – return_array (the array that contains price)

=XLOOKUP(H10,$E$9:$E$12,$C$9:$C$12)

How to use the XLOOKUP function in Excel with 7 Examples!

As you will see, Excel has pulled the price of the SKU LP1411 from the stock list and provided the result ($185) in the cell.

How to use the XLOOKUP function in Excel with 7 Examples!

Apply the same formula to the rest of the cells by dragging the lower right corner downwards.

How to use the XLOOKUP function in Excel with 7 Examples!

What if you are trying to search for a product name that is not available in the stock list table?

Excel will provide you with an error!

How to use the XLOOKUP function in Excel with 7 Examples!

Instead of showing this error, you can add a custom text (say, No Product Found) to display!

To do that, simply can add the fourth optional argument of XLOOKUP function – [if_not_found]

=XLOOKUP(H10,$E$9:$E$12,$C$9:$C$12,“No Product Found”)

How to use the XLOOKUP function in Excel with 7 Examples!

This was a basic example of how to use XLOOKUP in Excel. Let’s explore the advanced uses of this function in detail!

Approximate Match

In this example, Excel will look for the income entered in cell F14 and find the matching tax rate from column C.

How to use the XLOOKUP function in Excel with 7 Examples!

Instead of looking for an exact match, it will now look for an approximate match i.e. if an exact match is not found it will look for the next smaller or larger item based on the input provided.

If the income is greater than or equal to $0, the tax rate will be 13%. Similarly, if the income is greater than or equal to $8,456, the tax rate will be 18%, and so on.

So, let’s use this function to determine the tax rate for the income amount mentioned in cell F14.

=XLOOKUP (lookup_value, lookup_array, return_array, [if_not_found], [match_mode], [search_mode])

Here, the three permanent arguments and one optional argument [match_mode] will be used. You can ignore arguments – [if_not_found] and [search_mode] for this example.

Follow the step-by-step tutorial below to perform an approximate match using the XLOOKUP function:

STEP 1: Enter the first argument lookup_value i.e.?the income amount mentioned in cell E5.

=XLOOKUP(E5

How to use the XLOOKUP function in Excel with 7 Examples!

STEP 2:Enter the lookup_array i.e. the range containing income range (B5: B10).

=XLOOKUP(E5,B5:B10

How to use the XLOOKUP function in Excel with 7 Examples!

STEP 3:Enter the return_array

=XLOOKUP(E5,B5:B10,C5:C10

How to use the XLOOKUP function in Excel with 7 Examples!

STEP 4: Enter the 5th argument[match_mode].?The accepted values for this argument are:

  • 0 – Exact Match (if no result found, then error)
  • -1 – Exact or next smaller (if no result found, then the next smaller value will be displayed)
  • 1 – Exact or next larger (if no result found, then the next larger value will be displayed)
  • 2 – Wildcards

In this example, the value will be -1.

=XLOOKUP(E5,B5:B10,C5:C10,,-1)

(Ignore the 4th argument)?

How to use the XLOOKUP function in Excel with 7 Examples!

Below is the formula that should be used:

=XLOOKUP(E5,B5:B10,C5:C10,,-1)

As you know this function will perform an exact match by default, you need to use the optional part of the function – [match_mode]. So, if Excel fails to find an exact match, it will look for the next smaller income range mentioned in the table.

One of the advantages of using this function over Excel VLOOKUP for an approximate match is that you do not need to sort the data in ascending order. Excel will do that on its own!

In the example below, you will see that the data is not arranged in ascending order.

How to use the XLOOKUP function in Excel with 7 Examples!

You can use the same formula in randomly arranged data and Excel will provide you with the same (correct) result.

Horizontal Lookup

The syntax for performing a horizontal lookup using XLOOKUP is the same as for vertical lookup.

You just need to provide Excel with the lookup and return an array, the table’s orientation is irrelevant to the XLOOKUP function.

In this example, the product name is displayed on Row 5 and the price is displayed on Row 6. You need to perform a horizontal lookup to get your results.

STEP 1:Enter the lookup value i.e. the product name mentioned in cell H6.

=XLOOKUP(H6

How to use the XLOOKUP function in Excel with 7 Examples!

STEP 2:Enter the lookup array i.e. the array containing the product name.

=XLOOKUP(H6,$C$5:$F$5

How to use the XLOOKUP function in Excel with 7 Examples!

STEP 3:Enter the return array i.e. the array containing prices of the product.

=XLOOKUP(H6,$C$5:$F$5,$C$6:$F$6)

How to use the XLOOKUP function in Excel with 7 Examples!

It’s that easy to do a horizontal lookup using the new XLOOKUP function in Excel!

Return a Range instead of Value

Excel XLOOKUP has the ability to return multiple values instead of just one for a correct match. It can be done without making any change in the syntax, simply input the entire range in the function instead of just a single column or row.

In this example, we want to retrieve all the details related to the product name mentioned in cell G5.

How to use the XLOOKUP function in Excel with 7 Examples!

STEP 1: Select the cell containing the lookup value.

=XLOOKUP(G5

How to use the XLOOKUP function in Excel with 7 Examples!

STEP 2: Select the range containing the product list.

=XLOOKUP(G5,$B$4:$B$7

How to use the XLOOKUP function in Excel with 7 Examples!

STEP 3: Select the entire range containing columns for SKU, price, and cost.

=XLOOKUP(G5,$B$4:$B$7,$C$4:$E$7)

How to use the XLOOKUP function in Excel with 7 Examples!

Excel will extract or “spill” all the values with the help of the XLOOKUP formula!

How to use the XLOOKUP function in Excel with 7 Examples!

Using Wildcards

Xlookup in Excel allows you to search for a partial match using wildcards characters like: * ? ~

This can be done using Excel VLOOKUP as well. But the problem arises when you are actually trying to search the wildcard character itself in the data.

For XLOOKUP, you can use wildcards in the lookup_value argument and specify that in the [match_mode] argument. Enter 2 as the match_mode value to let Excel know that you are trying to do a partial match.

The three wildcards in Excel are:

  • Asterisk mark (*) represents any number of characters. For example, Jo* could mean Joanne, John, Joe, etc.
  • Question mark (?) represents one character. For example, Jo?n could mean John, Joan, etc.
  • Tilde (~) can be used when you want the asterisk or question mark to not be a wildcard. Simply place a tilde just before * or ?.

In these examples below, you can use wildcard characters (* or ?) to search for a partial match and return the corresponding email address.

Joa* will search for the first match starting with Joa and any number of characters after?that (Joan) and return the corresponding email address ([email?protected]).

=XLOOKUP(E5,$B$4:$B$10,$C$4:$C$10,,2)

How to use the XLOOKUP function in Excel with 7 Examples!

Jo?n will search for the first match starting with Jo followed by one character and then n (John)?and return the corresponding email address ([email?protected]).

=XLOOKUP(E6,$B$4:$B$10,$C$4:$C$10,,2)

How to use the XLOOKUP function in Excel with 7 Examples!

Search from bottom to top

In this example, we will search the value from bottom to top instead of the default direction (top to bottom). This can be achieved by using the 6th argument of the function[search_mode].

It is an amazing feature if you wish to find the last occurrence of something in your data. Let’s dive into this XLOOKUP example to learn how.

In this example, you have sales data with the Sales date, Product name and Price mentioned. You have to find out the latest price at which a particular product was sold.

How to use the XLOOKUP function in Excel with 7 Examples!

Follow the step-by-step tutorial to search value from bottom to top:

STEP 1: Enter the lookup value i.e. the product name mentioned in cell F5.

=XLOOKUP(F5

How to use the XLOOKUP function in Excel with 7 Examples!

STEP 2:Enter the lookup array i.e. the array containing the product name.

=XLOOKUP(F5,C4:C30

How to use the XLOOKUP function in Excel with 7 Examples!

STEP 3:Enter the return array i.e. the array containing prices of the product.

=XLOOKUP(F5,C4:C30,D4:D30

How to use the XLOOKUP function in Excel with 7 Examples!

STEP 4:Enter the 6th argument [search_mode]. It will be -1 for this example as you want to search from bottom to top.

=XLOOKUP(F5,C4:C30,D4:D30,,,-1)

How to use the XLOOKUP function in Excel with 7 Examples!

Excel will start the search from the bottom and the first match will be produced as a result!

Multiple spill values

In this example, we have an employee ID mentioned in cell G1. We want to extract first name, last name, and salary based on the employee ID.

How to use the XLOOKUP function in Excel with 7 Examples!

Let us understand the syntax here:

STEP 1: Enter the first argument – Lookup_value.?Here our lookup value is in cell A2, which contains the employee id whose details we want to find out.

=XLOOKUP(A2,

How to use the XLOOKUP function in Excel with 7 Examples!

STEP 2: Enter the second argument – Lookup_array. Here we are going to search in the column containing the list of employee id, i.e., A5:A35,

=XLOOKUP(A2,A5:A35,

How to use the XLOOKUP function in Excel with 7 Examples!

STEP 3: Enter the third argument – Return_array: Here we are going to select the columns containing the corresponding details such as first name, last name, and salary that we want to extract, i.e., B5:D35

=XLOOKUP(A2,A5:A35,B5:D35)

How to use the XLOOKUP function in Excel with 7 Examples!

Here we have our employee id of 1010, which spills its corresponding values of the first name, last name, and salary. This is happening because we have selected 3 columns in the return_array argument.

How to use the XLOOKUP function in Excel with 7 Examples!

Grid lookup

We can perform a Grid lookup by using nested XLOOKUP in Excel, i.e., using an XLOOKUP function inside another. As Excel works by solving the inner function first, the inner XLOOKUP function will be solved first.

In this example, we are trying to get the rate for the category mentioned in cell B8 and the quality mentioned in cell B9. The inner XLOOKUP in Excel will be used to get the rate for the quality mentioned in cell B9 and then using the resultant array the rate for the category mentioned in cell B8 we will get the desired rate.

How to use the XLOOKUP function in Excel with 7 Examples!

Let us understand the syntax of the inner XLOOKUP in Excel:

STEP 1: Enter the first argument – Lookup_value. Here our lookup value is in cell B9, which contains the Quality of the product that we want.

=XLOOKUP(B9,

How to use the XLOOKUP function in Excel with 7 Examples!

STEP 2: Enter the second argument – Lookup_array: Here we are going to search in the column containing the list of different quality levels offered, i.e., B1:E1

=XLOOKUP(B9,B1:E1,

How to use the XLOOKUP function in Excel with 7 Examples!

STEP 3:Enter the third argument – Return_array. Here we are going to select the entire array of prices, i.e., B2:E4

=XLOOKUP(B9,B1:E1,B2:E4)

How to use the XLOOKUP function in Excel with 7 Examples!

This XLOOKUP function will solve to give a spilled result of all the prices in column D, as we have observed earlier in our example. This result (D2:D4) is fed as result_array for the outer XLOOKUP in Excel. Let us understand the syntax here:

STEP 1: Enter the first argument – Lookup_value. Here our lookup value is in cell B8, which contains the Category of the product that we want.

=XLOOKUP(B8,

How to use the XLOOKUP function in Excel with 7 Examples!

STEP 2: Enter the second argument – Lookup_array. Here we are going to search in the column containing the list of different categories of products offered, i.e., A2:A4

=XLOOKUP(B8,A2:A4,

How to use the XLOOKUP function in Excel with 7 Examples!

STEP 3:Enter the third argument – Return_array. Here we will be adding the inner XLOOKUP in Excel.

=XLOOKUP(B8,A2:A4,XLOOKUP(B9,B1:E1,B2:E4))

How to use the XLOOKUP function in Excel with 7 Examples!

This XLOOKUP in Excel matches the category of product desired and gives the corresponding price. The end result is the price of the category of product desired with the specified quality level.

How to use the XLOOKUP function in Excel with 7 Examples!

XLOOKUP to the left

One major drawback of VLOOKUP was that it compulsorily had to keep the lookup array in the leftmost column of our dataset for it to be able to search for any criteria. Since XLOOKUP in Excel has separate arrays for both lookup and result, we can bypass this constraint and search right to left as well.

How to use the XLOOKUP function in Excel with 7 Examples!

Let us understand the syntax here:

STEP 1: Enter the first argument – Lookup_value. Here our lookup value is in cell G1, which contains the employee ID.

=XLOOKUP(G1,

How to use the XLOOKUP function in Excel with 7 Examples!

STEP 2: Enter the second argument – Lookup_array. Here we are going to search in the column containing the list of employee id, i.e., D2:D32

=XLOOKUP(G1,D2:D32,

How to use the XLOOKUP function in Excel with 7 Examples!

STEP 3: Enter the third argument – Return_array. Here we are going to select the entire array of corresponding date of joining of employees, i.e., C2:C32

=XLOOKUP(G1,D2:D32,C2:C32)

How to use the XLOOKUP function in Excel with 7 Examples!

The salary for the mentioned employee ID has been returned by the XLOOKUP function in Excel even though the return array is on left of the lookup array.

How to use the XLOOKUP function in Excel with 7 Examples!

Case sensitive XLOOKUP

The XLOOKUP in Excel is not case sensitive i.e. it treats both uppercase and lowercase as the same words. You can make XLOOKUP case-sensitive by using the EXACT Formula in Excel along with XLOOKUP.

The syntax of the EXACT function is –

=EXACT(text1,?text2)

What it means:

=EXACT(first text to be compared,?second text to be compared)

In this example, we are trying to exact the price for the quality mentioned in cell E1 using the list of quality and prices mentioned in the array A2:B7.

How to use the XLOOKUP function in Excel with 7 Examples!

Let us follow the step-by-step tutorial below –

STEP 1: Enter the first argument – Lookup_value. Here our lookup value is TRUE, we are searching for an exact case-sensitive match. This function here works in tandem with the EXACT function.

=XLOOKUP(TRUE,

How to use the XLOOKUP function in Excel with 7 Examples!

STEP 2: Enter the second argument – Lookup_array. Here we are using the EXACT function to compare the value in E1 (which contains the Quality level) to each cell in the range A2:A7 (list of all levels of quality offered). The EXACT function returns TRUE if the two numbers are exactly the same, and FALSE otherwise.

=XLOOKUP(TRUE,EXACT(E1,A2:A7)

How to use the XLOOKUP function in Excel with 7 Examples!

STEP 3: Enter the third argument –Return_array. Here we are going to select the entire array of the corresponding price of the product at different quality levels, i.e., B2:B7

=XLOOKUP(TRUE,EXACT(E1,A2:A7),B2:B7)

How to use the XLOOKUP function in Excel with 7 Examples!

In this case, the XLOOKUP function searches for the first TRUE value in the array that the EXACT function has returned. If it discovers a TRUE result, it returns the value from the range B2:B7.

We can see that Excel has extracted the price of Aa1 i.e. $49.14 and not the price of quality AA1. Hence, allowing lookup to find case-sensitive values.

How to use the XLOOKUP function in Excel with 7 Examples!

Multiple Criteria in XLOOKUP

In this example, we will be searching for a value that matches more than 1 criteria using XLOOKUP.

How to use the XLOOKUP function in Excel with 7 Examples!

Here, we are trying to get data for a product that matches the following three conditions –

  • Texture is Silk
  • Quality is S1
  • Type is Top

Let us follow the steps below to understand how this can be accomplished.

STEP 1: Enter the first argument – Lookup_value.?Here our lookup value is 1. This is because test arrays will return 1 only when all the criteria are met.

=XLOOKUP(1,

How to use the XLOOKUP function in Excel with 7 Examples!

STEP 2: Enter the second argument – Lookup_array. Here we are checking multiple criteria. We will call them our test arrays.

  • First, we want to extract details for a Silk product. We are searching for matches of “Silk” in the entire array B2:B25.
  • Then we want a product of the S1 quality category. We are searching for matches of “S1” in the entire array C2:C25
  • Finally, we want the details of a Top product. We are searching for matches of “Top” in the entire array D2:D25.

=XLOOKUP(1,(B2:B25=”Silk”)*(C2:C25=”S1″)*(D2:D25=”Top”)

How to use the XLOOKUP function in Excel with 7 Examples!

STEP 3: Enter the third argument – Return_array. Here we are going to select the entire array because we want to extract the entire details of the product, i.e., A2:E25.

=XLOOKUP(1,(B2:B25=”Silk”)*(C2:C25=”S1″)*(D2:D25=”Top”),A2:E25)

How to use the XLOOKUP function in Excel with 7 Examples!

Product ID 17572 matches all three conditions and thus values related to this product ID have been extracted here.

How to use the XLOOKUP function in Excel with 7 Examples!

Frequently Asked Questions

What is XLOOKUP used for in Excel?
XLOOKUP is used to search for and return values in a dataset, offering more flexibility than traditional lookup functions like VLOOKUP or HLOOKUP.

Can XLOOKUP look to the left of the lookup column?
Yes! XLOOKUP can search left or right, removing the biggest limitation of VLOOKUP which only looks right.

What happens if XLOOKUP doesn’t find a match?
You can provide a custom message or result using the [if_not_found] argument—for example:
=XLOOKUP("A", A2:A10, B2:B10, "Not Found")

Can XLOOKUP return multiple values?
Yes, if you select a return range with multiple columns, XLOOKUP can spill the results into adjacent cells.

Is XLOOKUP available in all Excel versions?
XLOOKUP is available in Excel 365 and Excel 2019 or later. Older versions do not support this function.

Conclusion

XLOOKUP is the latest and outstanding addition to the Excel lookup family. It can search for a value and return the matching result, similar to the Excel VLOOKUP.

But that’s not it!

There are several reasons why this new XLOOKUP function is better:

  • It can lookup data to the right or left of the lookup values.
  • It looks for an exact match by default. You do not have to enter an additional argument for it.
  • It allows you to provide a custom value or text if your search result is not found.
  • It can perform a partial match lookup using wildcards.
  • It can search for values both horizontally and vertically.
  • It can return a range instead of a single value which spills out the results.
  • It allows you to find the last occurrence in your data.

The above is the detailed content of How to use the XLOOKUP function in Excel with 7 Examples!. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undress AI Tool

Undress AI Tool

Undress images for free

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Hot Topics

PHP Tutorial
1488
72
how to group by month in excel pivot table how to group by month in excel pivot table Jul 11, 2025 am 01:01 AM

Grouping by month in Excel Pivot Table requires you to make sure that the date is formatted correctly, then insert the Pivot Table and add the date field, and finally right-click the group to select "Month" aggregation. If you encounter problems, check whether it is a standard date format and the data range are reasonable, and adjust the number format to correctly display the month.

How to Fix AutoSave in Microsoft 365 How to Fix AutoSave in Microsoft 365 Jul 07, 2025 pm 12:31 PM

Quick Links Check the File's AutoSave Status

how to repeat header rows on every page when printing excel how to repeat header rows on every page when printing excel Jul 09, 2025 am 02:24 AM

To set up the repeating headers per page when Excel prints, use the "Top Title Row" feature. Specific steps: 1. Open the Excel file and click the "Page Layout" tab; 2. Click the "Print Title" button; 3. Select "Top Title Line" in the pop-up window and select the line to be repeated (such as line 1); 4. Click "OK" to complete the settings. Notes include: only visible effects when printing preview or actual printing, avoid selecting too many title lines to affect the display of the text, different worksheets need to be set separately, ExcelOnline does not support this function, requires local version, Mac version operation is similar, but the interface is slightly different.

How to change Outlook to dark theme (mode) and turn it off How to change Outlook to dark theme (mode) and turn it off Jul 12, 2025 am 09:30 AM

The tutorial shows how to toggle light and dark mode in different Outlook applications, and how to keep a white reading pane in black theme. If you frequently work with your email late at night, Outlook dark mode can reduce eye strain and

How to Screenshot on Windows PCs: Windows 10 and 11 How to Screenshot on Windows PCs: Windows 10 and 11 Jul 23, 2025 am 09:24 AM

It's common to want to take a screenshot on a PC. If you're not using a third-party tool, you can do it manually. The most obvious way is to Hit the Prt Sc button/or Print Scrn button (print screen key), which will grab the entire PC screen. You do

Where are Teams meeting recordings saved? Where are Teams meeting recordings saved? Jul 09, 2025 am 01:53 AM

MicrosoftTeamsrecordingsarestoredinthecloud,typicallyinOneDriveorSharePoint.1.Recordingsusuallysavetotheinitiator’sOneDriveina“Recordings”folderunder“Content.”2.Forlargermeetingsorwebinars,filesmaygototheorganizer’sOneDriveoraSharePointsitelinkedtoaT

how to find the second largest value in excel how to find the second largest value in excel Jul 08, 2025 am 01:09 AM

Finding the second largest value in Excel can be implemented by LARGE function. The formula is =LARGE(range,2), where range is the data area; if the maximum value appears repeatedly and all maximum values ??need to be excluded and the second maximum value is found, you can use the array formula =MAX(IF(rangeMAX(range),range)), and the old version of Excel needs to be executed by Ctrl Shift Enter; for users who are not familiar with formulas, you can also manually search by sorting the data in descending order and viewing the second cell, but this method will change the order of the original data. It is recommended to copy the data first and then operate.

how to get data from web in excel how to get data from web in excel Jul 11, 2025 am 01:02 AM

TopulldatafromthewebintoExcelwithoutcoding,usePowerQueryforstructuredHTMLtablesbyenteringtheURLunderData>GetData>FromWebandselectingthedesiredtable;thismethodworksbestforstaticcontent.IfthesiteoffersXMLorJSONfeeds,importthemviaPowerQuerybyenter

See all articles