MOTOSHARE ๐Ÿš—๐Ÿ๏ธ
Turning Idle Vehicles into Shared Rides & Earnings

From Idle to Income. From Parked to Purpose.
Earn by Sharing, Ride by Renting.
Where Owners Earn, Riders Move.
Owners Earn. Riders Move. Motoshare Connects.

With Motoshare, every parked vehicle finds a purpose. Owners earn. Renters ride.
๐Ÿš€ Everyone wins.

Start Your Journey with Motoshare

Excel Automation Learning Tutorial for Accounting and Sales Work

Uncategorized

Excel automation means using Excel features to reduce manual work. You should not start directly with coding. First, you should learn clean data management, formulas, Pivot Tables, Power Query, and then VBA.

Microsoft also recommends Excel learning resources for formulas, guides, and training videos, and Power Query is officially used to connect, clean, filter, combine, and transform data from different sources.


Stage 1: Start with Clean Excel Data

Before automation, your data must be clean. If your data is messy, automation will also become messy.

What You Should Learn First

Learn these basic Excel skills:

  • Sorting
  • Filtering
  • Freeze panes
  • Remove duplicates
  • Text to columns
  • Find and replace
  • Basic formatting
  • Excel tables
  • Data validation
  • Conditional formatting

Your Practice Project

Create one sheet named:

Payment Tracker

Use these columns:

DateCustomer NameMobileCourse/ProductInvoice NoTotal AmountPaid AmountBalanceDue DateStatusFollow-up Remark

Now select your data and press:

Ctrl + T

This converts your data into an Excel Table. This is very important because tables automatically expand when new data is added.

Video Search Topic

Search on YouTube:

Excel for Beginners Full Course

Watch only the parts related to:

  • Tables
  • Filters
  • Sorting
  • Formatting
  • Data validation
  • Conditional formatting

Stage 2: Learn Formulas for Accounting and Sales

Formulas are the heart of Excel automation.

Important Formulas You Must Learn

FormulaUse in Your Work
IFAuto status like Paid, Pending, Overdue
SUMIFSTotal sales by course, month, person
COUNTIFSCount leads, pending payments, closed sales
XLOOKUPFind customer, invoice, payment details
FILTERShow only pending or overdue records
UNIQUECreate unique customer/course list
TEXTConvert dates into month names
TODAYTrack current date and due payments
EOMONTHMonth-end accounting calculations

Example 1: Balance Formula

Use this formula in the Balance column:

=[@[Total Amount]]-[@[Paid Amount]]

Example 2: Payment Status Formula

Use this formula in the Status column:

=IF([@Balance]=0,"Paid",IF(TODAY()>[@[Due Date]],"Overdue","Pending"))

Now Excel will automatically show:

  • Paid
  • Pending
  • Overdue

Example 3: Total Pending Payment

=SUMIFS(PaymentTable[Balance],PaymentTable[Status],"Pending")

Example 4: Overdue Payment Count

=COUNTIFS(PaymentTable[Status],"Overdue")

Video Search Topic

Search on YouTube:

Excel Formulas for Beginners with Examples

Focus on:

  • IF
  • SUMIF
  • SUMIFS
  • COUNTIF
  • COUNTIFS
  • XLOOKUP
  • FILTER
  • TODAY

Stage 3: Create Dropdowns to Avoid Mistakes

Dropdowns make your sheet professional and error-free.

For example, in the Status column, do not type manually every time.

Use dropdown values:

Paid, Pending, Partial, Overdue, Cancelled

For sales follow-up:

New Lead, Contacted, Interested, Demo Scheduled, Payment Pending, Closed, Lost

How to Add Dropdown

Go to:

Data โ†’ Data Validation โ†’ List

Then enter your values.

Where You Should Use Dropdowns

ColumnDropdown Example
Payment StatusPaid, Pending, Overdue
Lead StatusNew, Follow-up, Closed, Lost
Course/ProductDevOps, SRE, DevSecOps, AIOps
Payment ModeUPI, Bank Transfer, Cash, Card
SalespersonName of team members
Follow-up RemarkCall Again, Not Responding, Interested

Benefit

This avoids spelling mistakes like:

  • Paid
  • paid
  • PAID
  • Payment Done

Automation works properly only when values are consistent.


Stage 4: Use Conditional Formatting

Conditional formatting helps you visually identify important records.

Use It For

  • Overdue payments
  • Pending payments
  • High-value leads
  • Payment received
  • Low balance
  • Follow-up due today

Example

Select the Status column.

Go to:

Home โ†’ Conditional Formatting โ†’ Highlight Cells Rules โ†’ Text That Contains

Add rules for:

  • Overdue
  • Pending
  • Paid

Now your important rows will stand out automatically.


Stage 5: Learn Pivot Tables for Fast Reports

Pivot Tables are very important for accountants and sales people. Microsoft describes PivotTables as a powerful tool to calculate, summarize, and analyze data so you can see comparisons, patterns, and trends.

Reports You Can Create with Pivot Tables

Report NameRowsValues
Customer-wise PendingCustomer NameBalance
Course-wise SalesCourse/ProductTotal Amount
Month-wise CollectionMonthPaid Amount
Salesperson PerformanceSalespersonTotal Sales
Payment Status ReportStatusBalance
Expense SummaryExpense CategoryAmount

How to Create Pivot Table

  1. Click inside your Excel Table
  2. Go to Insert โ†’ PivotTable
  3. Select New Worksheet
  4. Drag fields into Rows and Values
  5. Refresh when new data is added

Video Search Topic

Search on YouTube:

Excel Pivot Table Beginner Tutorial

Practice with your own sales and payment data.


Stage 6: Learn Power Query for Real Automation

Power Query should be your first serious automation skill.

Power Query helps you clean, combine, and transform data. Microsoft says Power Query and Power Pivot help users spend less time manipulating data and more time analyzing and creating impact.

Power Query Can Help You Automate

  • Bank statement cleaning
  • Monthly sales file combining
  • Duplicate customer removal
  • GST data preparation
  • Expense report cleaning
  • CRM export cleaning
  • Multiple Excel files merging
  • Payment gateway report cleaning

Example Use Case for You

Suppose every month you receive:

  • January sales file
  • February sales file
  • March sales file
  • April sales file

Instead of copying and pasting manually, Power Query can combine all files from one folder and create one clean master report.

Next month, you only add the new file into the folder and click:

Refresh

Best Power Query Practice Projects

ProjectWhat You Will Learn
Clean bank statementRemove unwanted rows and clean dates
Combine monthly sales filesMerge many files into one report
Clean customer databaseRemove duplicates and standardize names
Payment report automationPrepare pending/paid summary
GST sales summaryGroup sales data by month/category

Video Search Topics

Search these:

  1. Power Query for Beginners Excel
  2. Power Query for Accountants
  3. Learn to Automate Everything with Power Query in Excel
  4. Power Query Combine Multiple Excel Files
  5. Power Query Bank Statement Cleaning

A useful beginner video topic explains Power Query automation, ETL, data types, tables, loading data sources, basic transformations, and merging multiple data sources.


Stage 7: Learn Macros for Repeated Actions

Macros are useful when you repeat the same clicks again and again.

You Can Use Macros For

  • One-click formatting
  • Monthly report preparation
  • Clearing old data
  • Creating PDFs
  • Copying data between sheets
  • Hiding/unhiding sheets
  • Creating buttons
  • Refreshing reports

Example Macro Use Case

You prepare the same sales report every month:

  1. Format heading
  2. Apply borders
  3. Apply filters
  4. Create summary
  5. Save as PDF

A macro can record these steps and repeat them in one click.

Video Search Topic

Search on YouTube:

Excel Macros and VBA Tutorial for Beginners

Also search:

Automate Excel Without Coding Macros


Stage 8: Learn VBA for Advanced Automation

VBA is the coding language used for Excel automation. Microsoftโ€™s VBA documentation explains that Excel VBA helps users develop Excel solutions with programming tasks, samples, and references.

Learn VBA Only After

You are comfortable with:

  • Excel Tables
  • Formulas
  • Pivot Tables
  • Power Query
  • Macros

VBA Can Help You Build

  • Invoice generator
  • Payment reminder system
  • Auto email follow-up
  • PDF report generator
  • One-click dashboard refresh
  • Data entry form
  • Monthly report automation
  • Customer search tool

Beginner VBA Concepts

Learn these in order:

  1. Developer tab
  2. Macro recorder
  3. VBA editor
  4. Modules
  5. Sub procedure
  6. Variables
  7. If conditions
  8. Loops
  9. Worksheets and workbooks
  10. Buttons
  11. Message boxes
  12. Email automation

Video Search Topics

Search:

  1. Excel VBA Beginner Tutorial
  2. Excel VBA Full Course for Beginners
  3. Learn Excel VBA to Automate Anything
  4. Excel VBA Invoice Generator Tutorial
  5. Excel VBA Send Email from Excel

Stage 9: Learn Power Automate Later

Power Automate is useful when you want to connect Excel with other tools.

Use Power Automate For

  • Excel to Outlook email
  • Excel to Teams alert
  • Form submission to Excel
  • Approval workflow
  • Payment reminder
  • Follow-up reminder
  • SharePoint/OneDrive file automation

Example

When a new lead is added in Excel:

  • Send email to salesperson
  • Add follow-up reminder
  • Notify manager
  • Update status

Learn this after Power Query and basic VBA.


Your 30-Day Practical Learning Plan

DaysTopicWhat You Should Practice
Day 1โ€“3Excel TablesCreate Payment Tracker
Day 4โ€“6FormulasBalance, Status, Pending Amount
Day 7โ€“8DropdownsStatus, Course, Payment Mode
Day 9โ€“10Conditional FormattingHighlight overdue payments
Day 11โ€“14Pivot TablesCustomer-wise and month-wise reports
Day 15โ€“21Power QueryClean and combine sales/payment files
Day 22โ€“25MacrosRecord one-click formatting/report macro
Day 26โ€“30VBA BasicsCreate button-based simple automation

Your First Real Project: Payment Tracker Automation

This should be your first project.

Sheet 1: Payment Data

Columns:

DateCustomerMobileInvoice NoCourse/ProductTotal AmountPaid AmountBalanceDue DateStatusSalespersonRemark

Sheet 2: Dashboard

Show:

MetricValue
Total SalesAuto
Total ReceivedAuto
Total PendingAuto
Total OverdueAuto
Paid CustomersAuto
Pending CustomersAuto
Overdue CustomersAuto

Sheet 3: Pivot Report

Create:

  • Customer-wise pending
  • Course-wise sales
  • Salesperson-wise collection
  • Month-wise revenue
  • Status-wise payment report

Sheet 4: Follow-up List

Use FILTER formula to show only pending and overdue payments.

Example:

=FILTER(PaymentTable,PaymentTable[Status]<>"Paid")

Your Second Project: Sales Lead Tracker

After payment tracker, build sales lead automation.

Columns

Lead DateNameMobileEmailCourse/ProductSourceSalespersonStatusFollow-up DateRemark

Automation Ideas

  • Auto show todayโ€™s follow-ups
  • Count leads by salesperson
  • Count closed leads
  • Count lost leads
  • Track conversion rate
  • Track payment pending leads

Important Formula

=FILTER(LeadTable,LeadTable[Follow-up Date]=TODAY())

This shows todayโ€™s follow-ups automatically.


Your Third Project: Expense Tracker

Columns

DateExpense CategoryVendorAmountPayment ModeRemark

Reports

  • Category-wise expense
  • Month-wise expense
  • Payment mode-wise expense
  • Vendor-wise expense

Use Pivot Tables for this.


Best Video Learning Sequence

Follow this exact sequence:

  1. Excel for Beginners Full Course
  2. Excel Formulas for Beginners
  3. Excel Pivot Table Beginner Tutorial
  4. Power Query for Beginners Excel
  5. Power Query for Accountants
  6. Power Query Combine Multiple Excel Files
  7. Excel Macros and VBA Tutorial for Beginners
  8. Excel VBA Beginner Tutorial
  9. Excel VBA Full Course for Beginners
  10. Power Automate Excel to Outlook Email

What You Should Not Do in the Beginning

Avoid these mistakes:

  • Do not start directly with VBA coding
  • Do not create too many separate sheets
  • Do not use merged cells in data tables
  • Do not manually type statuses differently
  • Do not copy-paste reports every month
  • Do not keep blank rows inside data
  • Do not mix headings and data in the same table
  • Do not use color as data
  • Do not create reports manually if Pivot Table can do it
  • Do not automate messy data before cleaning it

Best Learning Order for You

Your perfect path is:

Excel Tables โ†’ Formulas โ†’ Dropdowns โ†’ Conditional Formatting โ†’ Pivot Tables โ†’ Power Query โ†’ Macros โ†’ VBA โ†’ Power Automate

This path is best because you are doing both accounting and sales work. First, make your data clean. Then make your calculations automatic. After that, create reports. Finally, automate repeated work with Power Query, macros, and VBA.

Final Recommendation

Start today with only one project: Payment Tracker Automation. Do not try to learn everything together. Build your payment tracker first with formulas, dropdowns, conditional formatting, and Pivot Tables. Then learn Power Query to clean and combine reports automatically. After that, learn macros and VBA for one-click reports, PDF generation, invoice automation, and email follow-ups. Within a few weeks of focused practice, your daily Excel work will become much faster, cleaner, and more professional.

0 0 votes
Article Rating
Subscribe
Notify of
guest

0 Comments
Oldest
Newest Most Voted
0
Would love your thoughts, please comment.x
()
x