search
HomeTopicsexcelApplication of the automatic calculation tool evaluate() in Excel function learning

Application of the automatic calculation tool evaluate() in Excel function learning

Recently, I received help from a classmate Zhou who works in a express delivery company. The main reason is that he encountered some troubles when calculating the volume of the package.

Let’s see if there are good solutions to the problems encountered by Zhou.

The following table shows the size data of express parcels compiled by Mr. Zhou recently. One of the important tasks is to calculate the volume of the parcel through length*width*height. This problem is also an automatic calculation problem in Excel that we often encounter.

Application of the automatic calculation tool evaluate() in Excel function learning

# Zhou said that he can actually do it himself, but the method is clumsy and primitive.

1. Excel column data calculation volume

The method Zhou used himself is to divide the data into columns. Since the three figures of length, width and height are equal, They are separated by asterisks, so the volume can be calculated by placing the numbers in three cells in columns.

Operation steps

1. Select the data in column G and click [Column] in the [Data] tab

Application of the automatic calculation tool evaluate() in Excel function learning

2. The column sorting wizard dialog box appears. We need a total of 3 steps to complete the data sorting. The first step is to choose the column separation method: [Delimiter], [Fixed Width]. There are asterisks in Mr. Zhou’s table to separate the data. You can use the delimiter to separate columns, so we select [Delimiter] and click [OK] 】.

Application of the automatic calculation tool evaluate() in Excel function learning

Note: [Separator] method is mainly used when there are obvious character separations. [Fixed width] is mainly used when there is no character separation or If there is no obvious pattern, manually set the width of column characters.

3. Click [Next] to enter the second step of the text column wizard. Here we can choose the separator symbol, which can be the TAB key, semicolon, comma, space, or other customizations. Since there is no asterisk in the default options, we check other and then enter the asterisk.

After the input is completed, you can see in the data preview below that the asterisk characters in the data have turned into vertical lines, and the column separation has been completed.

Application of the automatic calculation tool evaluate() in Excel function learning

#4. Click [Next], the column data format is normal, just click [Finish].

Application of the automatic calculation tool evaluate() in Excel function learning

A prompt appears: Data already exists here. Replace it?

Application of the automatic calculation tool evaluate() in Excel function learning

Since the content of column G before column separation contains length, width and height data, after column separation, column G is replaced with "long".

Click [OK] directly to see the column results.

Application of the automatic calculation tool evaluate() in Excel function learning

#5. Easily calculate the package volume based on the length, width and height.

Application of the automatic calculation tool evaluate() in Excel function learning

Classmate Zhou feels that this is not the best solution, because the number of table columns is fixed, and the data is already related to other tables, and the data is inserted after the data is divided into columns. With 2 new columns, wouldn’t the data be messed up?

2. Extract numbers to calculate volume

Let’s try to use text functions to solve it. (High energy ahead, you only need to understand it here, mainly to highlight the simplicity of the third method)

Application of the automatic calculation tool evaluate() in Excel function learning

Since we want to calculate the volume of the package, then we only You need to extract the length, width and height data in column G separately and then multiply them together.

Extract length data:

Function formula: =LEFT(G2,FIND("*",G2,1)-1)

Application of the automatic calculation tool evaluate() in Excel function learning

Extract width data:

Function formula:

=MID(G2,FIND(" *",G2,1) 1,FIND("-",SUBSTITUTE(G2,"*","-",2))-1-FIND("*",G2,1))

Application of the automatic calculation tool evaluate() in Excel function learning

Extract height data:

Function formula:

=RIGHT(G2,LEN(G2)-FIND("-",SUBSTITUTE(G2,"*","-",2),1))

Application of the automatic calculation tool evaluate() in Excel function learning

Finally, we merge the three function formulas into nested statistics to obtain the volume of the package.

Application of the automatic calculation tool evaluate() in Excel function learning

Okay, I know that the function formula above is too complicated and no one wants to learn it, so I haven’t done too much function analysis for you. It’s simple and crude. Here’s what I’ll give you We solemnly recommend the simplest method: macro table function.

3. EVALUATE function calculates volume

How to use the EVALUATE function. First, let’s understand the meaning of EVALUATE. In fact, EVALUATE is a macro table function. Macro table functions are also called Excel version 4.0 functions. They need to be defined by a name (and enable macros) or used in the macro table. Most of these functions have been gradually replaced by built-in functions and VBA functions, but you can’t learn it in one minute. VBA, you can learn macro table functions. The most common application of function EVALUATE is the automatic calculation of Excel formulas.

Let’s start the operation demonstration:

1. Select column G and click [Name Manager] in the [Formula] option.

Application of the automatic calculation tool evaluate() in Excel function learning

The following dialog box pops up:

Application of the automatic calculation tool evaluate() in Excel function learning

2. Click [New], and select [New Name] Enter the name TJ in the dialog box, and enter the function formula

=EVALUATE(Sheet1!$G$2:$G$44)/1000/1000(Note: Due to the previous The unit is centimeters. I want to convert the statistical results into cubic meters, so I need to divide 1000000) and click [OK]. Finally close the name manager.

Application of the automatic calculation tool evaluate() in Excel function learning

Formula analysis:

Since the data in column G is length*width*height, * means multiplication in excel. The data in column G itself can be regarded as a formula, and we only need to get the result of this formula. The function of EVALUATE is to get the value of the formula in the cell, so in the picture above, you will find that the parameter in the EVALUATE function has only one data area.

3. The time to witness the miracle has arrived. Enter the two letters TJ in cell H2 to quickly get the volume information!

Application of the automatic calculation tool evaluate() in Excel function learning

Isn’t this a simple and fast method that does not require auxiliary columns great! Simply the best of 3! Classmate Zhou’s problem finally has a perfect solution.

Related learning recommendations: excel tutorial

The above is the detailed content of Application of the automatic calculation tool evaluate() in Excel function learning. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:部落窝教育. If there is any infringement, please contact admin@php.cn delete
MEDIAN formula in Excel - practical examplesMEDIAN formula in Excel - practical examplesApr 11, 2025 pm 12:08 PM

This tutorial explains how to calculate the median of numerical data in Excel using the MEDIAN function. The median, a key measure of central tendency, identifies the middle value in a dataset, offering a more robust representation of central tenden

Google Spreadsheet COUNTIF function with formula examplesGoogle Spreadsheet COUNTIF function with formula examplesApr 11, 2025 pm 12:03 PM

Master Google Sheets COUNTIF: A Comprehensive Guide This guide explores the versatile COUNTIF function in Google Sheets, demonstrating its applications beyond simple cell counting. We'll cover various scenarios, from exact and partial matches to han

Excel shared workbook: How to share Excel file for multiple usersExcel shared workbook: How to share Excel file for multiple usersApr 11, 2025 am 11:58 AM

This tutorial provides a comprehensive guide to sharing Excel workbooks, covering various methods, access control, and conflict resolution. Modern Excel versions (2010, 2013, 2016, and later) simplify collaborative editing, eliminating the need to m

How to convert Excel to JPG - save .xls or .xlsx as image fileHow to convert Excel to JPG - save .xls or .xlsx as image fileApr 11, 2025 am 11:31 AM

This tutorial explores various methods for converting .xls files to .jpg images, encompassing both built-in Windows tools and free online converters. Need to create a presentation, share spreadsheet data securely, or design a document? Converting yo

Excel names and named ranges: how to define and use in formulasExcel names and named ranges: how to define and use in formulasApr 11, 2025 am 11:13 AM

This tutorial clarifies the function of Excel names and demonstrates how to define names for cells, ranges, constants, or formulas. It also covers editing, filtering, and deleting defined names. Excel names, while incredibly useful, are often overlo

Standard deviation Excel: functions and formula examplesStandard deviation Excel: functions and formula examplesApr 11, 2025 am 11:01 AM

This tutorial clarifies the distinction between standard deviation and standard error of the mean, guiding you on the optimal Excel functions for standard deviation calculations. In descriptive statistics, the mean and standard deviation are intrinsi

Square root in Excel: SQRT function and other waysSquare root in Excel: SQRT function and other waysApr 11, 2025 am 10:34 AM

This Excel tutorial demonstrates how to calculate square roots and nth roots. Finding the square root is a common mathematical operation, and Excel offers several methods. Methods for Calculating Square Roots in Excel: Using the SQRT Function: The

Google Sheets basics: Learn how to work with Google SpreadsheetsGoogle Sheets basics: Learn how to work with Google SpreadsheetsApr 11, 2025 am 10:23 AM

Unlock the Power of Google Sheets: A Beginner's Guide This tutorial introduces the fundamentals of Google Sheets, a powerful and versatile alternative to MS Excel. Learn how to effortlessly manage spreadsheets, leverage key features, and collaborate

See all articles

Hot AI Tools

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.

Undress AI Tool

Undress AI Tool

Undress images for free

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

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)