<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Hitesh Jangid</title>
    <description>The latest articles on DEV Community by Hitesh Jangid (@iamhiteshjangid).</description>
    <link>https://dev.to/iamhiteshjangid</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3322604%2F5ff5a43a-bbd0-49f1-9182-30c1157d75f4.png</url>
      <title>DEV Community: Hitesh Jangid</title>
      <link>https://dev.to/iamhiteshjangid</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/iamhiteshjangid"/>
    <language>en</language>
    <item>
      <title>📊 Building a Data Job Salary Dashboard in Excel: A Detailed Walkthrough</title>
      <dc:creator>Hitesh Jangid</dc:creator>
      <pubDate>Sat, 05 Jul 2025 08:59:23 +0000</pubDate>
      <link>https://dev.to/iamhiteshjangid/building-a-data-job-salary-dashboard-in-excel-a-detailed-walkthrough-28ck</link>
      <guid>https://dev.to/iamhiteshjangid/building-a-data-job-salary-dashboard-in-excel-a-detailed-walkthrough-28ck</guid>
      <description>&lt;p&gt;Hi there!&lt;/p&gt;

&lt;p&gt;If you're exploring a career in data or just curious about what different data jobs pay across countries and work types, you're in the right place. I recently built an interactive salary dashboard in Excel to help visualize trends in data job salaries — and in this post, I’ll walk you through exactly how I did it.&lt;/p&gt;

&lt;p&gt;Let’s dive in step by step!&lt;/p&gt;




&lt;ol&gt;
&lt;li&gt;Getting the Data In&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;I started by using a real world salary dataset. It had real job postings from 2023 for roles like Data Scientist, Analyst, Engineer, and more. The dataset included:&lt;/p&gt;

&lt;p&gt;Job Title&lt;/p&gt;

&lt;p&gt;Salary&lt;/p&gt;

&lt;p&gt;Country&lt;/p&gt;

&lt;p&gt;Job Schedule (Full-time, Contract, etc.)&lt;/p&gt;

&lt;p&gt;Required Skills&lt;/p&gt;

&lt;p&gt;What I did:&lt;/p&gt;

&lt;p&gt;Imported the data into Excel.&lt;/p&gt;

&lt;p&gt;Looked for missing or zero salary values.&lt;/p&gt;

&lt;p&gt;Cleaned up inconsistencies (like standardizing country names).&lt;/p&gt;

&lt;p&gt;Saved the cleaned data on a new sheet for analysis.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Tip: Always clean your data first — it saves a lot of headaches later!&lt;/p&gt;
&lt;/blockquote&gt;




&lt;ol&gt;
&lt;li&gt;Planning the Dashboard&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Before jumping into charts and formulas, I planned out what the dashboard should include.&lt;/p&gt;

&lt;p&gt;Dashboard Goals:&lt;/p&gt;

&lt;p&gt;Filters for Job Title, Country, and Schedule Type&lt;/p&gt;

&lt;p&gt;Charts for salaries by job title and by country&lt;/p&gt;

&lt;p&gt;Tables to calculate medians and support visuals&lt;/p&gt;

&lt;p&gt;I even sketched out a rough layout on paper — this helped a lot with structuring the final dashboard.&lt;/p&gt;




&lt;ol&gt;
&lt;li&gt;Preparing and Cleaning the Data&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;To make sure everything worked smoothly:&lt;/p&gt;

&lt;p&gt;I removed rows with missing or zero salary.&lt;/p&gt;

&lt;p&gt;Standardized things like "USA" and "United States".&lt;/p&gt;

&lt;p&gt;Created helper columns like “Short Job Title” for cleaner visuals.&lt;/p&gt;

&lt;p&gt;Helpful Formula to Remove Zero Salaries:&lt;/p&gt;

&lt;p&gt;=FILTER(Data!A2:E1000, Data!D2:D1000 &amp;lt;&amp;gt; 0)&lt;/p&gt;




&lt;ol&gt;
&lt;li&gt;Creating Support Tables&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;To power the dashboard filters and charts, I built small tables in the background:&lt;/p&gt;

&lt;p&gt;Unique lists of job titles, countries, and job types&lt;/p&gt;

&lt;p&gt;Median salary calculations for each filter combination&lt;/p&gt;

&lt;p&gt;Formula to Get Unique Job Titles:&lt;/p&gt;

&lt;p&gt;=UNIQUE(Data!A2:A1000)&lt;/p&gt;

&lt;p&gt;Formula to Calculate Median Salary:&lt;/p&gt;

&lt;p&gt;=MEDIAN(&lt;br&gt;
  IF(&lt;br&gt;
    (Data[Job_Title]=SelectedJobTitle)*&lt;br&gt;
    (Data[Country]=SelectedCountry)*&lt;br&gt;
    (ISNUMBER(SEARCH(SelectedType, Data[Schedule_Type])))*&lt;br&gt;
    (Data[Salary]&amp;lt;&amp;gt;0),&lt;br&gt;
    Data[Salary]&lt;br&gt;
  )&lt;br&gt;
)&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Note: This is an array formula – press Ctrl+Shift+Enter in older Excel versions.&lt;/p&gt;
&lt;/blockquote&gt;




&lt;ol&gt;
&lt;li&gt;Making Filters with Dropdowns&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;To make the dashboard interactive, I used Data Validation for dropdown filters:&lt;/p&gt;

&lt;p&gt;Job Title&lt;/p&gt;

&lt;p&gt;Country&lt;/p&gt;

&lt;p&gt;Schedule Type&lt;/p&gt;

&lt;p&gt;I used the unique lists from Step 4 to populate the dropdowns. Super easy and effective!&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fgithub.com%2FImHiteshjangid%2FSalary_Dashboard_EXCEL%2Fraw%2Fmain%2F0_Resources%2FImages%2F1_Salary_Dashboard_Data_Validation.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fgithub.com%2FImHiteshjangid%2FSalary_Dashboard_EXCEL%2Fraw%2Fmain%2F0_Resources%2FImages%2F1_Salary_Dashboard_Data_Validation.gif" alt="Data validation dropdown" width="800" height="400"&gt;&lt;/a&gt; &lt;/p&gt;




&lt;ol&gt;
&lt;li&gt;Designing Visuals&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Salary by Job Title – Bar Chart&lt;/p&gt;

&lt;p&gt;I created a bar chart that shows median salary by job title, sorted from high to low.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fgithub.com%2FImHiteshjangid%2FSalary_Dashboard_EXCEL%2Fraw%2Fmain%2F0_Resources%2FImages%2F1_Salary_Dashboard_Final_Dashboard.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fgithub.com%2FImHiteshjangid%2FSalary_Dashboard_EXCEL%2Fraw%2Fmain%2F0_Resources%2FImages%2F1_Salary_Dashboard_Final_Dashboard.gif" alt="Bar Chart" width="800" height="400"&gt;&lt;/a&gt; &lt;/p&gt;




&lt;p&gt;Salary by Country – Map Chart&lt;/p&gt;

&lt;p&gt;Using Excel’s map chart, I visualized salaries by country with color gradients to show salary ranges.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fgithub.com%2FImHiteshjangid%2FSalary_Dashboard_EXCEL%2Fraw%2Fmain%2F0_Resources%2FImages%2F1_Salary_Dashboard_Country_Map.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fgithub.com%2FImHiteshjangid%2FSalary_Dashboard_EXCEL%2Fraw%2Fmain%2F0_Resources%2FImages%2F1_Salary_Dashboard_Country_Map.gif" alt="Map Chart" width="800" height="400"&gt;&lt;/a&gt;&lt;/p&gt;




&lt;p&gt;Job Schedule Breakdown&lt;/p&gt;

&lt;p&gt;I also added a chart/table to show how job types (like full-time or contract) are distributed.&lt;/p&gt;

&lt;p&gt;Formula to Filter Simple Job Types:&lt;/p&gt;

&lt;p&gt;=FILTER(J2#, (NOT(ISNUMBER(SEARCH("and", J2#))+ISNUMBER(SEARCH(",", J2#)))) * (J2# &amp;lt;&amp;gt; 0))&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fgithub.com%2FImHiteshjangid%2FSalary_Dashboard_EXCEL%2Fraw%2Fmain%2F0_Resources%2FImages%2F1_Salary_Dashboard_Screenshot2.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fgithub.com%2FImHiteshjangid%2FSalary_Dashboard_EXCEL%2Fraw%2Fmain%2F0_Resources%2FImages%2F1_Salary_Dashboard_Screenshot2.png" alt="Table Job Type" width="800" height="400"&gt;&lt;/a&gt;&lt;/p&gt;




&lt;ol&gt;
&lt;li&gt;Assembling the Dashboard&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;This is the fun part! I put everything together on one sheet:&lt;/p&gt;

&lt;p&gt;Filters at the top&lt;/p&gt;

&lt;p&gt;Charts in the middle&lt;/p&gt;

&lt;p&gt;Summary tables at the bottom&lt;/p&gt;

&lt;p&gt;I made sure everything was dynamic, so any filter change updates the entire dashboard. I also used consistent colors for a clean, professional look.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fgithub.com%2FImHiteshjangid%2FSalary_Dashboard_EXCEL%2Fraw%2Fmain%2F0_Resources%2FImages%2F1_Salary_Dashboard_Final_Dashboard.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fgithub.com%2FImHiteshjangid%2FSalary_Dashboard_EXCEL%2Fraw%2Fmain%2F0_Resources%2FImages%2F1_Salary_Dashboard_Final_Dashboard.gif" alt="Dashboard" width="800" height="400"&gt;&lt;/a&gt;&lt;/p&gt;




&lt;ol&gt;
&lt;li&gt;Testing and Final Touches&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Before sharing it, I tested all the filters and charts by changing values. I fixed a few formula errors and checked for slowdowns due to large data.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Polishing is key — a working dashboard is great, but a smooth, user-friendly one is even better.&lt;/p&gt;
&lt;/blockquote&gt;




&lt;p&gt;Final Thoughts&lt;/p&gt;

&lt;p&gt;Building this dashboard was a great learning experience and a fun way to visualize real-world salary data for data jobs. Excel is surprisingly powerful when it comes to interactive dashboards — especially when you combine formulas, charts, filters, and a bit of design thinking.&lt;/p&gt;

&lt;p&gt;🔗 If you’re interested in exploring or customizing it, you can download the complete dashboard and sample data from my GitHub repository:&lt;/p&gt;

&lt;p&gt;👉 &lt;a href="https://github.com/ImHiteshjangid/Salary_Dashboard_EXCEL" rel="noopener noreferrer"&gt;GitHub Repository&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Let me know what you think or if you'd like to see similar dashboards for other topics!&lt;/p&gt;




&lt;p&gt;Would you like a downloadable blog version (PDF/Markdown), or help publishing this to a platform like Medium or your own site?&lt;/p&gt;

</description>
      <category>excel</category>
      <category>dashboard</category>
      <category>datavisualization</category>
      <category>dataanalysis</category>
    </item>
  </channel>
</rss>
