Tag: Excel Filter

  • Top 10 Excel Functions Every Data Analyst Must Master

    When Rohan, a 26-year-old commerce graduate from Pune, started preparing for his first data analyst interview, he quickly realized one thing – Excel is not just a spreadsheet tool, it’s a career-making skill.

    He had always used Excel for basic sums and formatting, but during mock interviews, he froze when asked,

    “Can you combine INDEX and MATCH to find a sales figure for a product in a given month?”

    That day, Rohan decided – No more guesswork. I will master the top Excel functions recruiters expect.
    Here’s what he learned, with examples from his practice sessions.


    1. VLOOKUP / XLOOKUP – Rohan’s ‘Data Detective’ Tool

    One day, Rohan had two datasets – one with Product Names, another with Sales Values.
    Instead of scrolling endlessly, he used:

    =XLOOKUP("Mango Juice", A2:A100, B2:B100, "Not Found")
    

    Result: Sales value for Mango Juice in seconds.
    Lesson: Lookup functions save hours in data matching.


    2. INDEX + MATCH – Rohan’s Upgrade

    During an interview test, the product name was in column C, and sales were in column A.
    VLOOKUP couldn’t help (it needs the lookup column first).
    Rohan used:

    =INDEX(A2:A100, MATCH("Mango Juice", C2:C100, 0))
    

    Lesson: INDEX+MATCH works in any direction and is interview gold.


    3. TEXT Functions – Cleaning Rohan’s Messy Data

    His dataset had customer IDs like " AB1234 " with spaces.
    He cleaned it using:

    =TRIM(A2)
    

    And extracted first 2 letters for state code:

    =LEFT(A2, 2)
    

    Lesson: TEXT functions like LEFT, RIGHT, MID, TRIM, and LEN are must-haves for messy datasets.


    4. IF + IFS – Decision Maker

    When given sales targets, Rohan categorized them:

    =IF(B2>=100000, "Top Performer", "Needs Improvement")
    

    For multiple conditions:

    =IFS(B2>=100000, "Top Performer", B2>=50000, "Average", TRUE, "Low")
    

    Lesson: IF helps classify data instantly.


    5. SUMIF / SUMIFS – Finding Patterns

    To know the total sales for “Mango Juice” in the “East” region:

    =SUMIFS(Sales, Product, "Mango Juice", Region, "East")
    

    Lesson: SUMIFS is perfect for quick conditional aggregations.


    6. COUNTIF / COUNTIFS – Counting What Matters

    In one dataset, Rohan needed to know how many orders were above ₹5,000:

    =COUNTIF(Sales, ">5000")
    

    Lesson: COUNT functions are quick ways to spot trends in large datasets.


    7. FILTER – Rohan’s Shortcut to Relevant Data

    Instead of applying Excel’s manual filter, Rohan extracted all sales for the “North” region with:

    =FILTER(A2:D100, Region="North")
    

    Lesson: Dynamic, criteria-based extraction beats manual filtering.


    8. UNIQUE – Finding Distinct Customers

    When asked for the number of unique buyers, Rohan did:

    =UNIQUE(CustomerName)
    

    Lesson: UNIQUE quickly deduplicates lists for better analysis.


    9. Date Functions – Time Travel in Excel

    Rohan needed monthly trends. He used:

    =TEXT(OrderDate, "MMM-YYYY")
    

    For month-end date:

    =EOMONTH(OrderDate, 0)
    

    Lesson: Date functions help slice and dice time-based data.


    10. Power Query + Power Pivot – Rohan’s Secret Weapon

    By now, Rohan could clean data in Power Query, load millions of rows, and use DAX for calculated measures.
    In one interview, he impressed the panel by transforming raw CSV files into a dashboard-ready table in 10 minutes.


    Rohan’s Takeaway

    “Excel isn’t about knowing formulas by heart—it’s about knowing which function to use when, and how to combine them.”

    Master these 10 functions, and you’re not just prepared for a data analyst job—you’re prepared for real-world problem solving.


    Top rated products

  • How to Hide Filter Arrows in Excel Without Removing Filters

    ✅ How to Hide Filter Arrows in Excel While Filtering

    By default, when you apply a filter in Excel (via Data → Filter), small dropdown arrows appear in the header row. However, in some professional reports or dashboards, you might want to hide these arrows for a cleaner appearance — without removing the filter functionality.


    🔷 Method 1: Use VBA to Hide Filter Arrows

    Excel does not offer a direct built-in setting to hide filter arrows while keeping filters active, but it can be done using a simple VBA macro.

    📌 Steps:

    1. Press Alt + F11 to open the VBA Editor
    2. Insert a new module (Insert > Module)
    3. Paste the following code:
    vbaCopyEditSub HideFilterArrows()
        Dim ws As Worksheet
        Set ws = ActiveSheet
        
        Dim lo As ListObject
        For Each lo In ws.ListObjects
            lo.ShowAutoFilterDropDown = False
        Next lo
    End Sub
    
    1. Run the macro (F5)

    This will hide the dropdown arrows in Excel Tables, but keep the filtering logic intact.


    🔷 Method 2: Use Camera Tool for Display-Only Dashboards

    If you want to display filtered results only (like in a dashboard) without arrows:

    1. Apply the filter normally
    2. Use Excel’s Camera tool or Paste as Linked Picture
      • Select the filtered table → Copy
      • Go to where you want to show it → Home > Paste > As Picture > Linked Picture

    This lets you display a live-updating view without arrows, and is ideal for dashboards or reports.


    🔷 Method 3: Use Slicers (for Tables or PivotTables)

    For a more visual and user-friendly filtering experience without any arrows:

    1. Convert your data to a Table (Ctrl + T)
    2. Go to Table Design → Insert Slicer
    3. Select columns for filtering
    4. Use slicers to filter — no dropdown arrows needed!

    ❌ Limitations

    • Excel does not allow hiding filter arrows on regular ranges without removing the filter entirely.
    • VBA-based hiding only works on Excel Tables, not on ordinary filtered ranges.

    🎓 Want to Learn Excel Filters, Slicers, and VBA?

    💡 Learn all Excel productivity tips, including filtering, advanced data tools, slicers, and automation with VBA.

    👉 Join my Excel course here:
    🔗 Mastering MS Excel – A Comprehensive Training Course

    Available in online and pen drive formats — Perfect for professionals and learners at all levels.


  • Excel Filter Option: Detailed Explanation with Examples

    Excel Filter Option: Detailed Explanation with Examples

    The Filter option in Excel is used to view specific rows in a dataset while hiding the rest, based on criteria you set. It’s especially useful when working with large data sets and you need to focus on certain types of data without deleting or moving anything.


    ✅ How to Apply a Filter in Excel

    1. Select the data range (including headers).
    2. Go to the Home tab or Data tab.
    3. Click on Filter (you’ll see small dropdown arrows appear in the header row).
    4. Click on the dropdown arrow in the column you want to filter.
    5. Choose:
      • Specific values to show
      • Text, Number, or Date filters (e.g., “Contains”, “Greater Than”, “Before”, etc.)

    🔍 Example 1: Filtering Text Data

    NameDepartmentCity
    AnjaliSalesMumbai
    RaviHRDelhi
    MeenaSalesMumbai
    SureshFinancePune
    NehaHRMumbai

    Task: Show only employees from the Sales department.

    Steps:

    • Apply Filter
    • Click on the dropdown in the Department column
    • Select Sales

    Result:

    NameDepartmentCity
    AnjaliSalesMumbai
    MeenaSalesMumbai

    🔢 Example 2: Filtering Numbers

    ProductUnits Sold
    A120
    B80
    C150
    D95

    Task: Show products that sold more than 100 units.

    Steps:

    • Apply Filter
    • Click on dropdown in Units Sold
    • Choose Number Filters > Greater Than > 100

    Result:

    ProductUnits Sold
    A120
    C150

    📅 Example 3: Filtering Dates

    NameJoining Date
    Aman01-Jan-2023
    Pooja15-Feb-2023
    Nikhil20-Jan-2022
    Kiran01-Apr-2023

    Task: Show people who joined in 2023.

    Steps:

    • Apply Filter
    • Click on dropdown in Joining Date
    • Choose Date Filters > After > 31-Dec-2022

    🧠 Real-Life Scenarios Where Filter is Useful

    ✅ 1. HR/Employee Records

    • Filter employees by department, city, date of joining, or performance rating.

    ✅ 2. Sales & Inventory

    • View products with stock less than a threshold.
    • Analyze sales from specific regions or sales reps.

    ✅ 3. Finance

    • Filter transactions above or below a specific amount.
    • Show only “Pending” or “Approved” expenses.

    ✅ 4. School/College Data

    • Show students from a particular grade/class.
    • Filter students who scored above 90 marks.

    ✅ 5. Customer Database

    • Target customers from a specific city or purchase history.

    💡 Bonus Tips

    • Clear Filter: Use “Clear Filter” option to remove applied filters.
    • Filter Multiple Columns: You can apply filters to multiple columns at once.
    • Use Custom Filters: Combine conditions like “greater than 100” AND “less than 200”.
    • Shortcut: Press Ctrl + Shift + L to toggle filters on or off.

    Here is your sample Excel file with filter examples


    Watch the Video to learn Filter



    On sale products