Excel: Master Excel Formulas, PDF Conversion & Shortcut Keys Guide

Learn how to master Excel with this comprehensive guide covering Excel formulas from percentage to sum and more basic to advanced formulas, shortcut keys, and how to convert Excel to PDF using built-in tools and converters.

Shivam Gupta

a month ago

microsoft-excel

Mastering Excel: From Formulas to PDF Conversion – A Complete Guide

Excel is more than just a spreadsheet tool—it's a powerhouse for data analysis, reporting, and productivity. Whether you're a student, professional, or entrepreneur, mastering Excel can dramatically improve your workflow and decision-making. In this guide, we’ll explore everything from essential Excel formulas to using an Excel to PDF converter, and even uncover time-saving Excel shortcut keys. If you’ve ever wondered how to make the most of Excel, this post is for you.

Let’s dive into the world of Excel and discover how it can transform the way you work.


Excel: The Backbone of Modern Data Management

Excel has been a staple in offices and classrooms for decades. Its versatility makes it ideal for budgeting, data analysis, project tracking, and more.

Why Excel Is Still Relevant Today

Despite the rise of cloud-based tools, Excel remains irreplaceable for many tasks:

  • Offline accessibility: No internet? No problem.

  • Advanced formulas: From simple arithmetic to complex financial models.

  • Customization: Create dashboards, charts, and pivot tables tailored to your needs.

Key Benefits of Using Excel

  • Efficiency: Automate repetitive tasks with formulas and macros.

  • Accuracy: Reduce human error with built-in functions.

  • Visualization: Turn raw data into meaningful charts and graphs.


Excel Formulas: The Heart of Spreadsheet Power

Understanding Excel formulas is crucial to unlocking the full potential of the software. Formulas allow you to perform calculations, manipulate data, and automate tasks.

Essential Excel Formulas Everyone Should Know

Here are some must-know formulas for beginners and pros alike:

🔢 Math & Statistical Formulas

  1. =SUM(A1:A10)
    👉 Adds values from A1 to A10

  2. =AVERAGE(A1:A10)
    👉 Calculates average of a range

  3. =MAX(A1:A10)
    👉 Returns the highest number in a range

  4. =MIN(A1:A10)
    👉 Returns the lowest number in a range

  5. =COUNT(A1:A10)
    👉 Counts numeric values in a range

  6. =COUNTA(A1:A10)
    👉 Counts non-empty cells

  7. =COUNTIF(A1:A10, ">50")
    👉 Counts cells with values greater than 50

  8. =ROUND(A1, 2)
    👉 Rounds the number in A1 to 2 decimal places

  9. =MOD(A1, 3)
    👉 Returns remainder of A1 divided by 3

  10. =ABS(A1)
    👉 Returns absolute value of A1


🔍 Lookup & Reference Functions

  1. =VLOOKUP(1001, A2:D100, 2, FALSE)
    👉 Looks for 1001 in column A, returns value from 2nd column

  2. =HLOOKUP("Jan", A1:Z3, 2, FALSE)
    👉 Looks for "Jan" across the top row, returns from 2nd row

  3. =XLOOKUP("Shivam", A1:A100, B1:B100)
    👉 Searches for "Shivam" in column A, returns from column B

  4. =INDEX(A1:C3, 2, 3)
    👉 Returns the value in row 2, column 3 of range A1:C3

  5. =MATCH(90, A1:A10, 0)
    👉 Returns the position of 90 in range A1:A10


🤔 Logical Functions

  1. =IF(A1>50, "Pass", "Fail")
    👉 Returns "Pass" if A1 > 50, otherwise "Fail"

  2. =IFERROR(A1/B1, "Divide by Zero Error")
    👉 Returns result of A1/B1, or error message if B1 is 0

  3. =AND(A1>0, B1<100)
    👉 Returns TRUE if both conditions are met

  4. =OR(A1>0, B1<100)
    👉 Returns TRUE if either condition is met

  5. =NOT(A1>50)
    👉 Returns TRUE if A1 is NOT greater than 50


🔡 Text Functions

  1. =LEFT(A1, 5)
    👉 Extracts first 5 characters from A1

  2. =RIGHT(A1, 4)
    👉 Extracts last 4 characters from A1

  3. =MID(A1, 3, 4)
    👉 Extracts 4 characters from A1, starting at 3rd character

  4. =LEN(A1)
    👉 Returns length of text in A1

  5. =TRIM(A1)
    👉 Removes extra spaces from text

  6. =CONCAT(A1, " ", B1)
    👉 Joins values of A1 and B1 with a space in between

  7. =TEXTJOIN(", ", TRUE, A1:A5)
    👉 Joins all values in A1:A5 separated by a comma


📅 Date & Time Functions

  1. =TODAY()
    👉 Returns current date

  2. =NOW()
    👉 Returns current date and time

  3. =DATEDIF(A1, B1, "Y")
    👉 Returns the number of full years between two dates

  4. =EDATE(TODAY(), 3)
    👉 Returns the date 3 months after today

  5. =EOMONTH(A1, 1)
    👉 Returns last date of next month from A1

  6. =NETWORKDAYS(A1, B1)
    👉 Returns number of working days between two dates


🧮 Dynamic Array Functions (Excel 365)

  1. =UNIQUE(A1:A10)
    👉 Returns unique values from a range

  2. =FILTER(A1:B10, B1:B10="India")
    👉 Filters rows where column B equals "India"

  3. =SORT(A1:A10)
    👉 Sorts values in ascending order

  4. =SEQUENCE(5)
    👉 Returns a vertical array: 1, 2, 3, 4, 5

  5. =SORTBY(A1:A10, B1:B10)
    👉 Sorts A1:A10 by values in B1:B10

Tips for Using Formulas Effectively

  • Use named ranges for clarity.

  • Combine formulas for advanced logic.

  • Audit formulas with the Formula Auditing tool.


Excel Shortcut Keys: Work Smarter, Not Harder

Speed is everything when working with large datasets. That’s where Excel shortcut keys come in.

Top Excel Shortcut Keys to Boost Productivity

Most Famous Excel Shortcut Keys (One by One)


📄 Workbook & Worksheet Management

  1. Ctrl + N
    👉 Create a new workbook.

  2. Ctrl + O
    👉 Open an existing workbook.

  3. Ctrl + S
    👉 Save the current workbook.

  4. Ctrl + P
    👉 Open the print dialog.

  5. Ctrl + W
    👉 Close the active workbook.

  6. Ctrl + Tab
    👉 Switch between open workbooks.

  7. Ctrl + Page Up
    👉 Move to the previous worksheet.

  8. Ctrl + Page Down
    👉 Move to the next worksheet.

  9. Alt + F4
    👉 Exit Excel completely.


⌨️ Editing & Formatting

  1. Ctrl + C
    👉 Copy selected cell(s).

  2. Ctrl + X
    👉 Cut selected cell(s).

  3. Ctrl + V
    👉 Paste copied or cut content.

  4. Ctrl + Z
    👉 Undo the last action.

  5. Ctrl + Y
    👉 Redo the previously undone action.

  6. Ctrl + B
    👉 Make selected text bold.

  7. Ctrl + I
    👉 Italicize selected text.

  8. Ctrl + U
    👉 Underline selected text.

  9. Ctrl + 1
    👉 Open Format Cells dialog.

  10. Alt + E, S, V
    👉 Paste Special.


🧭 Navigation

  1. Arrow Keys
    👉 Move one cell up, down, left, or right.

  2. Ctrl + Arrow Keys
    👉 Jump to the edge of data in that direction.

  3. Home
    👉 Go to the beginning of the row.

  4. Ctrl + Home
    👉 Go to cell A1.

  5. Ctrl + End
    👉 Go to the last used cell.

  6. Page Up / Page Down
    👉 Scroll up or down by one screen.


🧠 Formulas & Functions

  1. =
    👉 Begin writing a formula.

  2. Alt + =
    👉 Insert AutoSum.

  3. Ctrl + ` (grave accent)
    👉 Show or hide all formulas.

  4. F2
    👉 Edit the selected cell.

  5. Shift + F9
    👉 Recalculate the active worksheet.

  6. Ctrl + Shift + Enter
    👉 Enter an array formula (legacy Excel).


🔢 Selection & Cell Actions

  1. Ctrl + Space
    👉 Select the entire column.

  2. Shift + Space
    👉 Select the entire row.

  3. Ctrl + A
    👉 Select all data.

  4. Shift + Arrow Keys
    👉 Expand selection in desired direction.

  5. Ctrl + Shift + Arrow Keys
    👉 Select to the edge of the data region.

  6. Ctrl + Shift + L
    👉 Turn filters on/off.


📊 Rows, Columns, and Tables

  1. Ctrl + Shift + + (Plus)
    👉 Insert new row or column.

  2. Ctrl + - (Minus)
    👉 Delete selected row or column.

  3. Ctrl + T
    👉 Convert selected range into a table.

  4. Ctrl + 9
    👉 Hide selected rows.

  5. Ctrl + 0
    👉 Hide selected columns.

  6. Ctrl + Shift + 9
    👉 Unhide hidden rows.

  7. Ctrl + Shift + 0
    👉 Unhide hidden columns (needs enabling).


📅 Date & Time

  1. Ctrl + ;
    👉 Insert current date.

  2. Ctrl + Shift + ;
    👉 Insert current time.


🧩 Other Popular Shortcuts

  1. Alt + Enter
    👉 Start a new line within a cell.

  2. F4
    👉 Repeat the last action.

  3. Ctrl + F
    👉 Find within the sheet.

  4. Ctrl + H
    👉 Replace within the sheet.

  5. Ctrl + K
    👉 Insert a hyperlink.

  6. F1
    👉 Open the Excel Help menu.

  7. F7
    👉 Check spelling in worksheet.

How to Memorize Shortcuts

  • Practice daily.

  • Use cheat sheets.

  • Customize your own shortcuts via Excel Options.


Excel to PDF: Creating Shareable, Professional Documents

Need to send a report or invoice? Converting Excel to PDF ensures your document looks polished and is easy to share.

Why Convert Excel to PDF?

  • Preserves formatting: No surprises when others open your file.

  • Universal compatibility: PDFs can be opened on any device.

  • Security: Add password protection or restrict editing.

How to Convert Excel to PDF

There are multiple ways to do this:

Method 1: Using Excel’s Built-In Export Feature

  1. Go to File > Export > Create PDF/XPS Document.

  2. Choose your settings.

  3. Click Publish.

Method 2: Save As PDF

  1. Go to File > Save As.

  2. Choose PDF from the dropdown.

  3. Click Save.

Method 3: Use an Excel to PDF Converter

Online tools like Smallpdf, iLovePDF, or Adobe Acrobat offer quick conversion. Just upload your file and download the PDF.


Excel to PDF Converter: Choosing the Right Tool

When Excel’s built-in options aren’t enough, an external Excel to PDF converter can offer more flexibility.

Features to Look For in a Converter

  • Batch conversion: Convert multiple files at once.

  • Cloud integration: Connect with Google Drive or Dropbox.

  • Editing tools: Add annotations or merge PDFs.

  • Security options: Encrypt or watermark your files.

Recommended Excel to PDF Converters

  • Smallpdf: Fast and user-friendly.

  • Adobe Acrobat: Professional-grade features.

  • PDF24 Tools: Free and versatile.

  • Nitro PDF: Great for business use.


Common Challenges in Excel and How to Overcome Them

Even seasoned users face hurdles in Excel. Here’s how to tackle them.

Challenge 1: Formula Errors

Solution: Use Error Checking and Evaluate Formula tools to debug.

Challenge 2: Slow Performance with Large Files

Solution:

  • Avoid volatile formulas.

  • Use tables and structured references.

  • Break files into manageable chunks.

Challenge 3: Formatting Issues

Solution:

  • Use Cell Styles.

  • Apply Conditional Formatting.

  • Lock cells to prevent accidental changes.


Advanced Excel Tips for Power Users

Ready to level up? These advanced techniques will supercharge your Excel skills.

Power Query: Automate Data Cleaning

  • Import data from multiple sources.

  • Clean and transform data with ease.

  • Refresh queries with one click.

Pivot Tables: Dynamic Data Analysis

  • Summarize large datasets.

  • Create interactive dashboards.

  • Use slicers for quick filtering.

Macros: Automate Repetitive Tasks

  • Record actions with the Macro Recorder.

  • Write custom VBA scripts.

  • Save hours on routine tasks.


FAQ Section

Q1: How do I convert Excel to PDF without losing formatting?
A: Use Excel’s built-in Export or Save As PDF feature and check the print area before saving.

Q2: What are the most useful Excel formulas for beginners?
A: Start with SUM, AVERAGE, IF, and VLOOKUP. These cover basic calculations and data lookup.

Q3: Can I use shortcut keys in Excel on Mac?
A: Yes! Most shortcuts work similarly, but some use the Command key instead of Ctrl.

Q4: What’s the best Excel to PDF converter online?
A: Smallpdf and Adobe Acrobat are highly rated for ease of use and reliability.

Q5: How do I fix broken formulas in Excel?
A: Use the Formula Auditing tools under the Formulas tab to trace and correct errors.


Conclusion

Excel is a powerful tool that goes far beyond simple spreadsheets. From mastering Excel formulas to using an Excel to PDF converter, and speeding up your workflow with Excel shortcut keys, there’s a lot you can do to become more efficient and effective. Whether you're preparing reports, analyzing data, or sharing documents, Excel has the tools to help you succeed.

Start exploring these features today and transform the way you work with Excel.