Skip to main content

Anmol Raj | Data Analyst Resume 2026 | SQL, Power BI, Python

Anmol Raj | Data Analyst Resume 2026 | SQL, Power BI, Python

Welcome to my professional resume page. I am Anmol Raj, a Data Analyst passionate about transforming raw data into meaningful business insights through analytics, visualization, and reporting.



About Me

I am a Computer Science graduate with hands-on experience in SQL, Power BI, Excel, and Python. My expertise includes data cleaning, dashboard development, KPI reporting, business intelligence, and analytical problem-solving. I enjoy working with data to uncover trends, improve decision-making, and support business growth.

Contact Information

Name: Anmol Raj
Location: Muzaffarpur, Bihar, India
Email: anmolraj530@gmail.com
Phone: +91-9128823417

Professional Summary

Business-focused Data Analyst skilled in SQL, Power BI, Excel, and Python with practical experience in dashboard creation, reporting automation, data visualization, and business analytics. Adept at converting complex datasets into actionable insights that help organizations make informed decisions.

Technical Skills

Business Intelligence & Reporting

SQL & Databases

Data Processing & Analytics

  • Power Query

  • ETL Workflows

  • Data Cleaning

  • Data Validation

  • Exploratory Data Analysis

Programming

Excel

  • Pivot Tables

  • VLOOKUP

  • XLOOKUP

  • Conditional Formatting

  • Charts & Reporting

Tools

  • Git

  • GitHub

  • VS Code

  • Jupyter Notebook

Professional Experience

Deloitte Australia – Data Analytics Virtual Experience Program (Forage)

  • Analyzed workforce and gender pay datasets using Tableau and Excel.

  • Performed data cleaning, validation, and reporting analysis.

  • Developed dashboards and visual reports for business insights.

  • Generated recommendations based on analytical findings.

Customer Operations Associate – Amazon Process (Teleperformance)

May 2025 – July 2025

  • Resolved customer order, refund, delivery, and account-related issues.

  • Worked with operational KPIs including CSAT, AHT, and FCR.

  • Maintained workflow documentation and issue tracking.

  • Strengthened communication, stakeholder management, and problem-solving skills.

Featured Projects

Sales Performance & BI Dashboard

  • Processed and validated over 5,000 retail sales records.

  • Built interactive Power BI dashboards using DAX and data modeling.

  • Automated reporting workflows to improve efficiency.

  • Delivered actionable insights through trend and performance analysis.

E-commerce Sales Analysis Using SQL & Python

  • Analyzed customer behavior and sales trends.

  • Performed SQL joins, aggregations, CTEs, and Window Function analysis.

  • Cleaned and transformed datasets using SQL, Pandas, and NumPy.

  • Generated business reports and revenue insights.

Automated Time Table Generator

  • Developed using Python, Django, SQLite, Bootstrap, HTML, and CSS.

  • Automated scheduling workflows for educational institutions.

  • Implemented database-driven timetable management.

Education

Bachelor of Technology (B.Tech) – Computer Science & Engineering

Maulana Abul Kalam Azad University of Technology
2021 – 2025
CGPA: 7.40 / 10

Certifications

Career Objective

I am seeking opportunities as a Data Analyst, Business Intelligence Analyst, Reporting Analyst, or Power BI Developer where I can leverage my analytical skills, reporting expertise, and passion for data-driven decision-making to contribute to organizational success.

Conclusion

Thank you for visiting my resume page. If you are looking for a dedicated Data Analyst with strong skills in SQL, Power BI, Excel, and Python, feel free to connect with me for professional opportunities, collaborations, or discussions related to data analytics and business intelligence.

Comments

Popular posts from this blog

What is SQL? The Complete Beginner's Guide (2026) | Learn SQL with DataWithAnmol

What is SQL? The Complete Beginner's Guide (2026) If you're planning to become a Data Analyst , Business Analyst , Data Scientist , or even a Software Developer , one skill appears in almost every job description. That skill is SQL . Whether you are just starting your data journey or preparing for interviews, learning SQL is one of the best investments you can make. In this guide, I'll explain SQL in the simplest way possible. Welcome to DataWithAnmol . Who am I? Hi! I'm Anmol Raj , founder of DataWithAnmol . I created this platform to help beginners learn Data Analytics through practical examples instead of confusing theory. On my YouTube channel, I regularly share tutorials on: SQL Power BI Excel Python Data Analytics Projects Career Guidance Interview Preparation 📺 Subscribe here: https://youtube.com/@datawithanmolofficial?si=8APtSK5TY6Tl9Xd _ What i...

SQL SELECT Statement Explained with Examples | Complete Beginner Guide (2026)

SQL SELECT Statement Explained with Examples If you're beginning your SQL journey, the SELECT statement is the very first command you should learn. Almost every SQL query starts with SELECT because it is used to retrieve data from a database. In this beginner-friendly guide by DataWithAnmol , you'll learn how the SELECT statement works with simple examples. What is the SQL SELECT Statement? The SELECT statement is used to retrieve data from one or more tables in a database. Think of a database as a library. The SELECT command helps you find exactly the books (data) you need. Basic Syntax SQL Copy SELECT column_name FROM table_name; Example Table Imagine we have an Employees table. EmployeeID Name Department Salary 101 Amit HR 50000 102 Neha ...