DEV Community

Ashok Kumar
Ashok Kumar

Posted on

Employee Data sales Dashboard

๐Ÿ’ผ Employee Sales Dashboard using Power BI

(https://github.com/Ashokkumarrk/Employee_Data_Sales_Dashboard)

๐Ÿ“Š Project Overview

This project is an Employee Sales Dashboard built using Power BI, designed to visualize employee performance and sales trends across departments.

It helps businesses make data-driven decisions by identifying top performers and analyzing sales growth patterns.


โš™ Tools & Technologies Used

  • Power BI โ€“ for dashboard design and DAX measures
  • Excel / CSV dataset โ€“ for employee sales data
  • Power Query โ€“ for data transformation and cleaning
  • DAX โ€“ for calculated columns and KPIs

๐Ÿงฉ Dashboard Features

  • ๐Ÿ‘จโ€๐Ÿ’ผ Employee performance by department
  • ๐Ÿ’ฐ Sales revenue trends (monthly/quarterly/yearly)
  • ๐Ÿ† Top-performing employees
  • ๐Ÿ“ˆ Department-wise total sales comparison
  • ๐Ÿ“Š Filters for department, region, and performance level

๐Ÿงฎ Key DAX Measures


DAX
Total Sales = SUM(Sales[Amount])
Average Sales = AVERAGE(Sales[Amount])
Total Employees = DISTINCTCOUNT(Employee[EmployeeID])
Performance Score = DIVIDE(SUM(Sales[Amount]), [Average Sales])
Enter fullscreen mode Exit fullscreen mode

Top comments (0)