国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

Table of Contents
Quick Links
Parentheses: Controlling the Order of Operations
Your Calculator App Can Be Replaced By Microsoft Excel
Square Brackets: Referencing Column Headers in Tables
Everything You Need to Know About Excel Tables (And Why You Should Always Use Them)
Everything You Need to Know About Structured References in Excel
If You Don’t Rename Tables in Excel, Today’s the Day to Start
Curly Braces: Defining Array Formulas and Simplifying Logical Arguments
Excel's 12 Number Format Options and How They Affect Your Data
Home Software Tutorial Office Software How to Use Parentheses, Square Brackets, and Curly Braces in Microsoft Excel

How to Use Parentheses, Square Brackets, and Curly Braces in Microsoft Excel

Jun 19, 2025 am 03:03 AM

  • Parentheses: Controlling the Order of Operations
  • Square Brackets: Referencing Column Headers in Tables
  • Curly Braces: Defining Array Formulas and Simplifying Logical Arguments

Formulas in Microsoft Excel can contain a wide range of symbols, such as the asterisk (*), the question mark (?), and the "at" (@) sign. Among the most important are parentheses, square brackets, and curly braces, and in this guide, I'll explain how each of these works.

Parentheses: Controlling the Order of Operations

Parentheses—or rounded brackets—are used in Excel to define the order in which calculations are performed.

Think back to your math lessons in school when you were told that equations had to follow a particular order to work correctly. Because Excel essentially acts as an advanced calculator, it follows a specific order when evaluating your formulas.

How to Use Parentheses, Square Brackets, and Curly Braces in Microsoft Excel

Related
Your Calculator App Can Be Replaced By Microsoft Excel

A spreadsheet can do much more.

4

At its most basic level, Excel follows the PEMDAS order—parentheses, then exponents (also known as indices), then multiplication and division, and finally, addition and subtraction.

Forget VLOOKUP in Excel: Here's Why I Use XLOOKUP

Out with the old, and in with the new.

5

Finally, parentheses are used in Excel to nest functions. In this example, the SUM function is nested within the IFERROR function so that if the result returns an error, a blank cell is displayed:

=IFERROR(SUM(B2/C2),"")

How to Use Parentheses, Square Brackets, and Curly Braces in Microsoft Excel

Square Brackets: Referencing Column Headers in Tables

Square brackets are used in Excel formulas to reference a header in a formatted table.

How to Use Parentheses, Square Brackets, and Curly Braces in Microsoft Excel

Related
Everything You Need to Know About Excel Tables (And Why You Should Always Use Them)

This could totally change how you work in Excel.

2

Let's say you've been sent this table (called Fruit_Sales), and your aim is to work out the turnover for each item in column F.

How to Use Parentheses, Square Brackets, and Curly Braces in Microsoft Excel

To do this, you'll need to multiply the values in column C (RetailPrice) by the values in column E (UnitsSold) for each row.

Starting in cell F2, much like when you create a formula in an unformatted dataset, type the equal (=) sign, and then click the first cell you want to include in your formula. In this case, it's cell C2.

However, notice that as soon as you click this cell, rather than adding the cell reference C2 to the formula, Excel places the column header inside square brackets—also known as a structured reference:

=[@RetailPrice]

How to Use Parentheses, Square Brackets, and Curly Braces in Microsoft Excel

Structured references offer several benefits in Excel. Specifically, they make formulas easier to read and understand, they save you from having to remember cell references, and they adjust dynamically to any changes you make to the table's structure or column headers.

How to Use Parentheses, Square Brackets, and Curly Braces in Microsoft Excel

Related
Everything You Need to Know About Structured References in Excel

Use table and column names instead of cell references.

You'll also see that an @ symbol (also known as the intersection operator) has been added to the structured reference, which means that Excel will treat each row in this column individually, rather than adding all the values in this column together in the formula.

Next, add the asterisk (*) symbol to create the multiplication, and click cell E2 to insert the second argument. Again, Excel inputs a structured reference to the column header:

=[@RetailPrice]*[@UnitsSold]

How to Use Parentheses, Square Brackets, and Curly Braces in Microsoft Excel

When you press Enter, Excel automatically applies the formula to the remaining cells in the column, saving you the effort of doing this manually.

How to Use Parentheses, Square Brackets, and Curly Braces in Microsoft Excel

Structured references with square brackets don't just apply to formulas within the table itself.

For example, let's say you want to calculate the total turnover by summing all the values in column F. While you could add a total row to the bottom of the table, you prefer to have the total at the top of the spreadsheet, so that you don't have to scroll down to see it.

How to Use Parentheses, Square Brackets, and Curly Braces in Microsoft Excel

In this case, in cell I2, type:

=SUM(

and then hover over the column header until you see a small, black arrow. When you do, click once to select all the cells in that column of the table.

How to Use Parentheses, Square Brackets, and Curly Braces in Microsoft Excel

Take a moment to review the reference that has been added to the formula. Notice how, this time, the structured reference with square brackets follows the table name. This is because the formula is outside the table, so Excel needs to add an extra signpost that directs it to the correct table:

=SUM(Fruit_Sales[Turnover]

How to Use Parentheses, Square Brackets, and Curly Braces in Microsoft Excel

Related
If You Don’t Rename Tables in Excel, Today’s the Day to Start

What's in a name? Well, quite a lot.

Finally, close the rounded parentheses to complete the formula, and press Enter.

How to Use Parentheses, Square Brackets, and Curly Braces in Microsoft Excel

Curly Braces: Defining Array Formulas and Simplifying Logical Arguments

Curly braces in Excel are primarily used to return an array, rather than a single result.

Some functions in Excel return dynamic, spilled arrays by default. For example, here, typing:

=SORT(A1:A3)

into cell C1 returns a result that starts in cell C1, and spills over to cells C2 and C3, as indicated by the blue line surrounding the cells.

How to Use Parentheses, Square Brackets, and Curly Braces in Microsoft Excel

However, you can also use this principle to force a function that doesn't automatically produce a dynamic array to generate more than one result.

Let's say you receive bonus payments on the 20th day of every other month, and you want to record these in a spreadsheet.

How to Use Parentheses, Square Brackets, and Curly Braces in Microsoft Excel

Rather than type the dates individually in column A, you can use a dynamic array formula with curly braces.

First, select column A by clicking the column header, and in the Number group of the Home tab on the ribbon, select "Date" from the drop-down list.

How to Use Parentheses, Square Brackets, and Curly Braces in Microsoft Excel

How to Use Parentheses, Square Brackets, and Curly Braces in Microsoft Excel

Related
Excel's 12 Number Format Options and How They Affect Your Data

Adjust your cells' number formats to match their data type.

Then, in cell A2, type:

=DATE(2025,{2;4;6;8;10;12},20)

where 2025 is the year, the numbers in the curly braces represent the months, and 20 is the day.

When you press Enter, Excel returns a result that spills from cell A2 to A7.

How to Use Parentheses, Square Brackets, and Curly Braces in Microsoft Excel

The 3 Best Logical Functions I Always Use in Excel

Make Excel evaluate your data.

2

However, typing each logical argument individually can be time-consuming. Instead, enclosing the criteria within curly braces refines the logical formula and returns the same result:

=IF(OR(A1={5,6,7,8}),"YES","NO")

How to Use Parentheses, Square Brackets, and Curly Braces in Microsoft Excel


Other important symbols in Microsoft Excel formulas include the dollar ($) sign, which turns a relative reference into an absolute or mixed reference, the hash (#) sign, which acts as a spilled range operator, and the period (.), which when used in a reference to a range, trims blank cells from the result.

The above is the detailed content of How to Use Parentheses, Square Brackets, and Curly Braces in Microsoft Excel. 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)

How to Use Parentheses, Square Brackets, and Curly Braces in Microsoft Excel How to Use Parentheses, Square Brackets, and Curly Braces in Microsoft Excel Jun 19, 2025 am 03:03 AM

Quick Links Parentheses: Controlling the Order of Opera

Outlook Quick Access Toolbar: customize, move, hide and show Outlook Quick Access Toolbar: customize, move, hide and show Jun 18, 2025 am 11:01 AM

This guide will walk you through how to customize, move, hide, and show the Quick Access Toolbar, helping you shape your Outlook workspace to fit your daily routine and preferences. The Quick Access Toolbar in Microsoft Outlook is a usefu

How to insert date picker in Outlook emails and templates How to insert date picker in Outlook emails and templates Jun 13, 2025 am 11:02 AM

Want to insert dates quickly in Outlook? Whether you're composing a one-off email, meeting invite, or reusable template, this guide shows you how to add a clickable date picker that saves you time. Adding a calendar popup to Outlook email

Prove Your Real-World Microsoft Excel Skills With the How-To Geek Test (Intermediate) Prove Your Real-World Microsoft Excel Skills With the How-To Geek Test (Intermediate) Jun 14, 2025 am 03:02 AM

Whether you've secured a data-focused job promotion or recently picked up some new Microsoft Excel techniques, challenge yourself with the How-To Geek Intermediate Excel Test to evaluate your proficiency!This is the second in a three-part series. The

How to Delete Rows from a Filtered Range Without Crashing Excel How to Delete Rows from a Filtered Range Without Crashing Excel Jun 14, 2025 am 12:53 AM

Quick LinksWhy Deleting Filtered Rows Crashes ExcelSort the Data First to Prevent Excel From CrashingRemoving rows from a large filtered range in Microsoft Excel can be time-consuming, cause the program to temporarily become unresponsive, or even lea

How to Switch to Dark Mode in Microsoft Excel How to Switch to Dark Mode in Microsoft Excel Jun 13, 2025 am 03:04 AM

More and more users are enabling dark mode on their devices, particularly in apps like Excel that feature a lot of white elements. If your eyes are sensitive to bright screens, you spend long hours working in Excel, or you often work after dark, swit

Microsoft Excel Essential Skills Test Microsoft Excel Essential Skills Test Jun 12, 2025 pm 12:01 PM

Whether you've landed a job interview for a role that requires basic Microsoft Excel skills or you're looking to solve a real-world problem, take the How-To Geek Beginner Excel Test to verify that you understand the fundamentals of this popular sprea

Google Sheets IMPORTRANGE: The Complete Guide Google Sheets IMPORTRANGE: The Complete Guide Jun 18, 2025 am 09:54 AM

Ever played the "just one quick copy-paste" game with Google Sheets... and lost an hour of your life? What starts as a simple data transfer quickly snowballs into a nightmare when working with dynamic information. Those "quick fixes&qu

See all articles