Excel Tabs and Some Formulas
Excel Tabs and Some Formulas
aua teChnologies
1. Home Tab
The Home Tab focuses on basic formatting, editing, and data manipulation
commands.
a. Clipboard Group
Cut, Copy, Paste (Ctrl + X, Ctrl + C, Ctrl + V): Used to move or duplicate data.
Paste Special: Provides advanced pasting options (e.g., values only Alt + H+V+V, formulas, or
formatting).
b. Font Group
Bold, Italics, Underline (Ctrl + B, Ctrl + I, Ctrl + U): Format text styles.
Font Color & Fill Color: Change text color or highlight cells.
c. Alignment Group
Merge & Center: Combine multiple cells into one and center the content.
Wrap Text: Adjust text to fit within the cell.
Text Alignment: Align content vertically or horizontally within the cell.
d. Number Group
Number Formatting: Change data types (e.g., General, Currency, Percentage, Date).
Increase/Decrease Decimal: Adjust the number of displayed decimal places.
e. Editing Group
AutoSum (Alt + =) : Quickly calculates the sum of selected cells.
Find & Replace (Ctrl + F, Ctrl + H) : Locate specific text or values in your workbook.
2. Insert Tab
The Insert Tab is used to add visual and functional elements.
a. Tables Group
Table: Converts data into a structured table with sorting and filtering. Shortcut: Ctrl + T.
PivotTable: Summarizes data dynamically.
b. Charts Group
c. Illustrations Group
d. Links
Hyperlink (Ctrl + K): Link text or objects to web pages, email, or other cells.
Margins: Adjust the space between the content and the page edges.
Orientation: Choose Portrait or Landscape mode for printing.
Size: Set the paper size (e.g., A4, Letter).
b. Scale to Fit
Adjust the scaling of the worksheet to fit on one page when printing.
c. Sheet Options
a. Function Library
b. Formula Auditing
in Excel helps you understand the relationships between formulas and cells in your
spreadsheet, ensuring accuracy and troubleshooting errors effectively. Here's a
breakdown of the features you mentioned:
Excel provides two primary modes for recalculating formulas: Automatic and
Manual. These options determine when and how Excel updates formulas in your
workbook.
What it does:
Excel recalculates formulas automatically whenever you make changes to the data or
structure of the workbook.
This is the default mode in Excel.
When to use:
Example:
If C1 has the formula =A1 + B1, and you update A1 to a new value, C1 will instantly
reflect the updated result.
When to use:
Example:
In manual mode, if C1 depends on A1 and B1, updating A1 will not immediately update
C1. You need to press F9 to see the updated result.
o Automatic
o Automatic Except for Data Tables (similar to automatic but skips recalculating data
tables for efficiency)
o Manual
Use Automatic when accuracy and real-time updates are more important than speed.
Use Manual for better performance when handling:
o Large datasets.
o Workbooks with complex formulas
5. DATA TAB
The Data Tab is for managing and analyzing datasets.
1. Plain Text: CSV files are simple text files, which makes them
lightweight and easy to share.
2. Tabular Data Format:
The data is organized into rows and columns. For example:
Name,Age,Country
John,30,USA
Mary,25,Canada
Ali,35,UAE
Data Transfer:
CSV is a common format for transferring data between systems (e.g.,
exporting contacts, importing data into databases).
Data Analysis:
Often used in data analysis tools (Python, R, Excel, etc.).
b. Data Tools
6. REVIEW TAB
The Review Tab focuses on proofing and protecting your workbook.
c. Protect
Protect Sheet: Lock certain cells or the entire sheet to prevent editing.
Protect Workbook: Prevent structural changes to the workbook.
7. VIEW TAB
The View Tab customizes how you view your workbook.
a. Workbook Views
b. Freeze Panes
Lock rows or columns in place while scrolling. Example: Freeze the top row with Freeze Top
Row.
ESSENTIAL EXCEL FORMULAS WITH THEIR SYNTAX
AND A BRIEF EXPLANATION OF THEIR USE:
1. SUM
2. SUMIF
3. AVERAGE
4. IF
5. COUNTIF
6. INDEX
7. MATCH
9. LEN
Syntax: =LEN(text)
Purpose: Returns the number of characters in a string (including spaces).
Example: =LEN(A1) returns the length of the text in A1.
10. TRIM
Syntax: =TRIM(text)
Purpose: Removes all extra spaces from text, leaving only single spaces between words.
Example: =TRIM(A1) cleans up unnecessary spaces in A1.
11. LEFT
12. RIGHT
13. MID
15. NOW
Syntax: =NOW()
Purpose: Returns the current date and time.
Example: =NOW() outputs the current date and time dynamically.
16. TODAY
Syntax: =TODAY()
Purpose: Returns the current date without the time.
Example: =TODAY() outputs today's date.
17. COUNT
18. IFERROR
19. NOW
20. TODAY
21. AND
23. UPPER
24. LOWER
25. PROPER
Purpose: Capitalizes the first letter of each word in a text string and converts all other letters
to lowercase.
Syntax: =PROPER(text)
Example:
If cell A1 contains the text "hello world", =PROPER(A1) This will return "Hello World".