Close Menu
GeekBlog

    Subscribe to Updates

    Get the latest creative news from FooBar about art, design and business.

    What's Hot

    AI Tokens Got 98% Cheaper. Corporate AI Bills Are Exploding Anyway

    July 31, 2026

    Hackers Are Hijacking Hotel Wi-Fi to Steal Microsoft 365 Logins Without a Single Phishing Email

    July 30, 2026

    New York vs Florida: Which State Is Better to Move To?

    July 30, 2026
    Facebook X (Twitter) Instagram Threads
    GeekBlog
    • Home
    • Mobile
    • Tech News
    • Blog
    • How-To Guides
    • AI & Software
    Facebook
    GeekBlog
    Home»How-To Guides»What Does the $ Sign Mean in Excel Formulas?
    How-To Guides

    What Does the $ Sign Mean in Excel Formulas?

    Michael ComaousBy Michael ComaousJuly 7, 2026Updated:July 7, 20266 Mins Read
    Share Facebook Twitter Pinterest LinkedIn Tumblr Email Copy Link
    Close-up of a printed spreadsheet with numbers
    Share
    Facebook Twitter LinkedIn Pinterest Email Copy Link

    If you have ever wondered what is $ in Excel formula notation, the short version is that the dollar sign locks part of a cell reference so it does not move when you copy the formula elsewhere. It has nothing to do with money or currency formatting. Instead, the $ is Excel’s way of telling a reference to stay put, and mastering it is the single biggest step from copying formulas that break to copying formulas that just work.

    In this guide you will learn exactly how the dollar sign changes a reference, the real difference between absolute and relative references, and how the F4 shortcut key adds and removes the $ for you. Every example uses concrete cell addresses like =A1*$B$1 so you can type them into a blank spreadsheet and see the result for yourself.

    Quick answer: The $ sign in an Excel formula locks a column, a row, or both so the reference does not change when the formula is copied. $B$1 always points to B1 (absolute), B1 shifts as you copy (relative), and $B1 or B$1 lock only one part (mixed). Press F4 to add the dollar signs quickly.

    Relative References: The Default Behavior

    By default, Excel uses relative references. A reference like A1 has no dollar signs, so Excel treats it as a direction rather than a fixed spot. When you copy the formula down or across, the reference shifts by the same number of rows and columns.

    Say cell C1 contains =A1*2. If you copy C1 down to C2, Excel automatically rewrites it as =A2*2. Copy it to C3 and it becomes =A3*2. This is exactly what you want when every row does the same calculation on its own data, such as multiplying each item’s quantity by two.

    Absolute References: Locking a Cell With $

    Recommended for you:

    How to Use Outlook for Beginners
    How-To Guides·Jul 7, 2026

    How to Use Outlook for Beginners

    An absolute reference uses two dollar signs, one before the column letter and one before the row number, like $B$1. Both parts are locked, so the reference always points to B1 no matter where you copy the formula.

    Imagine B1 holds a tax rate of 0.08. In cell C2 you type =A2*$B$1 to calculate tax on the amount in A2. When you copy that formula down to C3, it becomes =A3*$B$1. Notice that A2 changed to A3 (relative) but $B$1 stayed exactly the same (absolute). Every row now multiplies its own amount by the one shared tax rate in B1. Without the dollar signs, copying to C3 would give =A3*B2, and B2 is empty, so the math would break.

    Mixed References: Locking Just One Part

    Sometimes you want to lock only the column or only the row. That is a mixed reference, and it uses a single dollar sign.

    • $B1 locks the column (B) but lets the row change. Copy it across and it stays in column B; copy it down and the row number increases.
    • B$1 locks the row (1) but lets the column change. Copy it down and it stays in row 1; copy it across and the column letter advances.

    Mixed references shine in multiplication tables. If you put =$A2*B$1 in the top-left cell of a grid and copy it across and down, every cell multiplies its row header in column A by its column header in row 1, producing a full times table with a single formula.

    How to Add the $ Sign Step by Step

    1. Click the cell where you want your formula and type an equals sign to start.
    2. Begin the formula, for example type =A1*B1, but do not press Enter yet.
    3. Click inside the reference you want to lock, such as the B1 part of the formula in the formula bar.
    4. Press the F4 key. Excel instantly turns B1 into $B$1, adding both dollar signs at once.
    5. Press F4 again to cycle through the options: $B$1 (both locked), B$1 (row locked), $B1 (column locked), then back to B1 (nothing locked).
    6. Press Enter to finish, then copy the cell down or across and watch the locked parts stay in place.
    7. Check the results by clicking a copied cell and reading its formula in the formula bar to confirm the references behaved as expected.
    Tip: On many laptops, F4 is a media or brightness key, so you may need to hold the Fn key and press F4 together. On a Mac, the equivalent shortcut is Command + T while editing a formula.
    Use a relative reference when…

    Each row or column should calculate on its own neighboring data, like =A2*C2 copied down a price column. The reference should move with the formula.

    Use an absolute reference when…

    Every formula should point to one fixed cell, like a single tax rate, exchange rate, or grand total. Lock it with $ so copying never breaks the link.

    Dollar Sign Reference Cheat Sheet

    ReferenceTypeWhat is lockedExample use
    A1RelativeNothing=A1*2 copied down each row
    $A$1AbsoluteColumn and row=B2*$A$1 for a fixed rate
    $A1MixedColumn onlyLock column A across a grid
    A$1MixedRow onlyLock row 1 down a grid

    For more spreadsheet walkthroughs and shortcut tricks, explore our library of how-to guides.

    Frequently Asked Questions

    Does the $ sign format cells as currency?

    Recommended for you:

    How to Practice Typing in Notepad
    How-To Guides·Jul 7, 2026

    How to Practice Typing in Notepad

    No. Inside a formula the $ only locks references. To show numbers as dollars, select the cells and apply the Currency format from the Home tab or press Ctrl+Shift+4. The two uses of $ are completely separate.

    What is the difference between $B$1 and B1?

    B1 is relative and changes when you copy the formula. $B$1 is absolute and always points to cell B1 no matter where the formula is copied. Use $B$1 for a value that should never shift, like a shared rate.

    What does F4 do in an Excel formula?

    While editing a reference, pressing F4 cycles through the four lock states: $B$1, B$1, $B1, and B1. It is the fastest way to add or remove dollar signs without typing them manually.

    Can I use dollar signs with a range like A1:A10?

    Yes. You can lock a whole range as $A$1:$A$10, which is common in functions like SUM or VLOOKUP so the lookup table stays fixed when the formula is copied to other cells.

    Why does my formula break when I copy it?

    It usually breaks because a reference that should be fixed was left relative, so it shifted during the copy. Add dollar signs to the cell that must stay constant, then copy again and the results will stay correct.

    Share. Facebook Twitter Pinterest LinkedIn Tumblr Telegram Email Copy Link
    Previous ArticleHow to Set Up a Gmail Account
    Next Article How to Use Spotify: A Beginner’s Guide
    Michael Comaous
    • Website

    Michael Comaous is a dedicated professional with a passion for technology, innovation, and creative problem-solving. Over the years, he has built experience across multiple industries, combining strategic thinking with hands-on expertise to deliver meaningful results. Michael is known for his curiosity, attention to detail, and ability to explain complex topics in a clear and approachable way. Whether he’s working on new projects, writing, or collaborating with others, he brings energy and a forward-thinking mindset to everything he does.

    Related Posts

    8 Mins Read

    Why Is My Phone Lagging All of a Sudden? (Fixes)

    7 Mins Read

    How to Block Twitch Ads With uBlock Origin (2026)

    8 Mins Read

    How to Clear Cache on Android (Any Phone)

    8 Mins Read

    How to Reset AirPods: Every Model, Step by Step

    8 Mins Read

    How to Transfer Data to a New iPhone: Full Guide

    8 Mins Read

    How to Check Battery Health on Android (No Root)

    Top Posts

    Best Stores for Buying MP3 and Digital Music You Can Keep Forever (2026)

    August 2, 202514 Views

    Japan Skips Exams Until Age 10 and Teaches Character Instead. The Results Are Complicated.

    July 29, 20268 Views

    Husbands Cause More Stress Than Kids? Science Says Many Moms Feel Exactly That

    July 28, 20268 Views
    Stay In Touch
    • Facebook

    Subscribe to Updates

    Get the latest tech news from FooBar about tech, design and biz.

    Most Popular

    Best Stores for Buying MP3 and Digital Music You Can Keep Forever (2026)

    August 2, 2025911 Views

    Discord will require a face scan or ID for full access next month

    February 9, 2026770 Views

    Trade in your old phone and get up to $1,100 off a new iPhone 17 at AT&T – here’s how

    September 10, 2025382 Views
    Our Picks

    AI Tokens Got 98% Cheaper. Corporate AI Bills Are Exploding Anyway

    July 31, 2026

    Hackers Are Hijacking Hotel Wi-Fi to Steal Microsoft 365 Logins Without a Single Phishing Email

    July 30, 2026

    New York vs Florida: Which State Is Better to Move To?

    July 30, 2026

    Subscribe to Updates

    Get the latest creative news from FooBar about art, design and business.

    Facebook
    • About Us
    • Contact us
    • Privacy Policy
    • Disclaimer
    • Terms and Conditions
    © 2026 GeekBlog

    Type above and press Enter to search. Press Esc to cancel.