11 Hidden Excel Tricks You Need to Know: Boost Your Productivity
11 Hidden Excel Tricks You Need to Know: Boost Your Productivity
Quick Links
- FLOOR and CEILING for Rounding
- MODE.SNGL for Finding Repetitive Values
- CONVERT for Converting From One Measurement to Another
- DELTA for Testing Equal or Not Equal Values
- GESTEP for Testing Greater Than or Equal To a Threshold
- ADDRESS for Finding the Location of a Cell
- PI for the Value of Pi
- ARABIC and ROMAN for Converting Numerals
- REPT for Entering Repeating Text
Microsoft Excel offers hundreds of functions . So, there’s bound to be at least a handful you don’t know exist. These unique functions have specific purposes that you’ll be thrilled to learn about and use.
Related: 12 Basic Excel Functions Everybody Should Know
FLOOR and CEILING for Rounding
You can use the FLOOR and CEILING math functions for rounding towards or away from zero by a specified multiple. Use FLOOR to round down and CEILING to round up.
The syntax for each is
`FLOOR(value, multiple)`
and
`CEILING(value, multiple)`
where both arguments are required.
To round 4.4 down to the nearest multiple of 2, you’d use the following formula:
=FLOOR(4.4,2)
To round 5.6 up to the nearest multiple of 2, you’d use this formula:
=CEILING(5.6,2)
MODE.SNGL for Finding Repetitive Values
Originally simply the MODE function , Microsoft created a newer version of this statistical function for improved accuracy. Use MODE.SNGL to find a single frequently recurring number in an array or cell range.
The syntax is MODE.SNGL(array1, array2, ...)
where only the first argument is required. You can use numbers, names, arrays, or references that contain numbers. Use the optional argument(s) for additional cell ranges.
Here, we look for the repetitive number that appears the most in cells A1 through A5.
=MODE.SNGL(A1:A5)
To find a recurring number in A1 through A5 and C1 through C5, you’d use this formula:
=MODE.SNGL(A1:A5, C1:C5)
CONVERT for Converting From One Measurement to Another
For a useful engineering function, you can use CONVERT to change a value from one measurement system to another.
Related: How to Convert Almost Any Unit in Microsoft Excel
The syntax is CONVERT(value, from, to)
where you’ll need all three arguments. For the from
and to
arguments, you’ll use an abbreviation. Check the Microsoft Support site for the abbreviations you need for weight and mass, distance, time, pressure, force, energy, power, magnetism, temperature, volume, area, information, and speed.
To convert the value in cell A1 from Celsius to Fahrenheit, you would use this formula:
=CONVERT(A1,”C”,”F”)
To convert the value in cell B1 from centimeters to inches, use this formula:
=CONVERT(B1,”cm”,”in”)
DELTA for Testing Equal or Not Equal Values
Another engineering function that’s useful is DELTA. With it, you’ll use the Kronecker delta function to test whether two values are equal. Different than the EXACT function , the result is either 1 (true) or 0 (false).
The syntax is DELTA(value1, value2)
where only the first argument is required and can be a number or cell reference. If you leave the second argument blank, Excel assumes zero.
To test the values in cells A1 and B1, you would enter this formula:
=DELTA(A1,B1)
To test the values 2 and -2, use this formula:
=DELTA(2,-2)
GESTEP for Testing Greater Than or Equal To a Threshold
One more engineering function you may find useful is GESTEP which allows you to test values that are greater than or equal to a step (threshold). The result is either 1 (true) or 0 (false).
The syntax is GESTEP(value, step)
where only the first argument is required and can be a number or cell reference. If you leave the second argument blank, Excel uses zero.
To test the value in cell A1 against step 4, you’d use this formula:
=GESTEP(A1,4)
To test a value of 10 against step 12, use this formula:
=GESTEP(10,12)
ADDRESS for Finding the Location of a Cell
Let’s move on to a lookup function in Excel. To find the exact address of a cell, you can use the ADDRESS function. This is convenient if you want an error-free reference to a cell .
Related: How to Cross Reference Cells Between Microsoft Excel Spreadsheets
The syntax is ADDRESS(row, column, type, style, name)
where only the first two arguments are required. Enter the row number for the first argument and the column number for the second.
The optional arguments are as follows:
- Type: The type of reference to return. Use blank or 1 for absolute, 2 for absolute row and relative column, 3 for relative row and absolute column, or 4 for relative.
- Style: Use TRUE for the A1 or FALSE for the R1C1 cell reference style .
- Name: The sheet name to use for an external reference. If blank, Excel assumes the currently active sheet.
To find the address of the cell in row 2, column 3, you’d use this formula:
=ADDRESS(2,3)
To find the address of the same cell using an absolute row and relative column, you’d use this formula:
=ADDRESS(2,3,2)
To find the address of the same cell in the sheet named Sheet2, use the following formula. Note that the commas represent the blank arguments type
and style
.
=ADDRESS(2,3,,,”Sheet2”)
PI for the Value of Pi
If you need to use the value of pi for equations in your sheet, you can obtain it with the PI function.
The syntax is simply PI()
with no arguments. You can add more elements to the formula if you want to use the value for a calculation.
To return the value of pi, simply use the function’s formula including the parentheses:
=PI()
To multiply the value of pi by 10, you’d use this formula:
=PI()*10
ARABIC and ROMAN for Converting Numerals
Another math function you may find handy is for converting to and from Arabic and Roman numerals .
The syntax for each is ARABIC(text)
and ROMAN(value, form)
where the first argument is required for each.
The optional argument for the ROMAN function specifies the type of Roman numeral from Classic to Simplified. Enter the number 0, word TRUE, or omit the argument for Classic. Use a 1, 2, or 3 for a more concise result. Or, enter the number 4 or the word FALSE for Simplified.
To convert the Roman numeral MMIM to an Arabic number, use this formula making sure to include the text in quotes:
=ARABIC(“MMIM”)
To convert 2,999 to a Roman numeral, you’d use this formula:
=ROMAN(2999)
To convert the same number in Simplified form, use one of these formulas:
=ROMAN(2999,4)
=ROMAN(2999,FALSE)
REPT for Entering Repeating Text
If you want to add a series of characters, symbols, or text as a placeholder or for a visual effect, use the REPT text function .
Related: How to Add Text to a Cell With a Formula in Excel
The syntax is REPT(text, number)
where both arguments are required. Enter the text argument within quotes and then the number of times to repeat that text.
To repeat the word Excel 10 times in a cell, you’d use this formula:
=REPT(“Excel”,10)
To repeat an asterisk 20 times, you’d use this formula:
=REPT(“*”,20)
We’ve covered many Excel functions at How-To Geek and try to walk you through using the most common options. Hopefully one of these out-of-the-ordinary functions is exactly what you need for math, engineering, statistical, lookup, or textual data.
| | Mastering Excel Functions | | |
| —————————- | —————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————— | |
| Functions | AVERAGE · CONCATENATE · COUNT · COUNTIF · DATEDIF · FILTER · FREQUENCY · FV · HYPERLINK · IF · IFS · IMAGE · INDEX · IS · LEN · MATCH ·MEDIAN · RAND · ROUND · RRI · SORT · SQRT · SUBSTITUTE · SUBTOTAL · SUM · SUMIF · TODAY · TRIM · TRUNC · VLOOKUP · WEEKDAY · XLOOKUP · YEAR | |
| Types | Basic · Budgeting · Data Entry · Logical · Text · Time and Date | |
| Explained | Copying Formulas · Evaluating Formulas · Finding Functions · Fixing Formula Errors · Functions vs Formulas · Comparing Lookup Functions · Locking Formulas · Structuring Formulas · Translating Formulas | |
Also read:
- [New] In 2024, Your Journey to YouTube's Command Center of Creativity
- [New] Premium Audio Playwright Craftsmanship
- [New] Sideways Scene Understanding IG's Upside-Down Issue
- [New] Superior Free FB Visual Storyteller Tool for 2024
- [Updated] Expert Insights Blending Visual & Auditory Elements in Windows Photos for 2024
- Change Location on Yik Yak For your Honor Play 8T to Enjoy More Fun | Dr.fone
- Connecting the World Online Through Major Platforms - Facebook, Twitter, Instagram & YouTube
- Determining Your Current Windows 11 PowerShell Version: A Comprehensive Guide
- How to Infinix Hot 30i Get Deleted Pictures Back with Ease and Safety?
- In 2024, Process of Screen Sharing Vivo V27e to PC- Detailed Steps | Dr.fone
- Remove Unwanted Online Trackers: A Complete Walkthrough for Windows 11/Android Users
- The Power of Online Influence: Understanding Facebook, Twitter, Instagram and YouTube
- The Powerhouse Quartet of Online Interaction: Facebook, Twitter, Insta-Grams & Youtubes Explained
- The Quintessential Social Hubs: Unveiling Facebook, Twitter, Instagram & Youtube's Powerful Influence
- The Ultimate Walkthrough on How to Rollback a Windows 11 Patch
- Virtual Zoos Galore Android's Best Animal Games for 2024
- Title: 11 Hidden Excel Tricks You Need to Know: Boost Your Productivity
- Author: Michael
- Created at : 2024-09-29 16:04:19
- Updated at : 2024-10-01 17:19:27
- Link: https://win-forum.techidaily.com/11-hidden-excel-tricks-you-need-to-know-boost-your-productivity/
- License: This work is licensed under CC BY-NC-SA 4.0.