<?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>Forem: Joy Maritim</title>
    <description>The latest articles on Forem by Joy Maritim (@jlangat103wq).</description>
    <link>https://forem.com/jlangat103wq</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%2F3712877%2F3c67b918-e53e-41c3-a12f-9f514374fec1.png</url>
      <title>Forem: Joy Maritim</title>
      <link>https://forem.com/jlangat103wq</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/jlangat103wq"/>
    <language>en</language>
    <item>
      <title>Understanding Schemas and Data Modelling in Power BI</title>
      <dc:creator>Joy Maritim</dc:creator>
      <pubDate>Mon, 02 Feb 2026 09:32:39 +0000</pubDate>
      <link>https://forem.com/jlangat103wq/understanding-schemas-and-data-modelling-in-power-bi-d72</link>
      <guid>https://forem.com/jlangat103wq/understanding-schemas-and-data-modelling-in-power-bi-d72</guid>
      <description>&lt;p&gt;Data modelling is the backbone of effective reporting in Power BI. A well-designed model ensures not only accurate insights but also optimal performance. Let’s break down the key concepts every Power BI developer should master.&lt;/p&gt;




&lt;h2&gt;
  
  
  📖 What is a Schema?
&lt;/h2&gt;

&lt;p&gt;A &lt;strong&gt;schema&lt;/strong&gt; is the logical structure that defines how data is organized in a database or model.&lt;br&gt;&lt;br&gt;
It describes:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;How tables are arranged
&lt;/li&gt;
&lt;li&gt;How they relate to each other
&lt;/li&gt;
&lt;li&gt;The rules governing those relationships
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;In Power BI, schemas help shape the &lt;strong&gt;data model&lt;/strong&gt; that drives reporting and analysis.&lt;/p&gt;




&lt;h2&gt;
  
  
  📊 What is Data Modelling?
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Data modelling&lt;/strong&gt; is the process of designing how data should be structured, connected, and optimized for analysis.&lt;br&gt;&lt;br&gt;
In Power BI, this involves:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Identifying &lt;strong&gt;fact tables&lt;/strong&gt; (numerical, transactional data)
&lt;/li&gt;
&lt;li&gt;Creating &lt;strong&gt;dimension tables&lt;/strong&gt; (descriptive attributes like customer, product, date)
&lt;/li&gt;
&lt;li&gt;Defining &lt;strong&gt;relationships&lt;/strong&gt; between tables
&lt;/li&gt;
&lt;li&gt;Ensuring the model is efficient, accurate, and easy to use
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Good modelling ensures performance, scalability, and trustworthy reporting.&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%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fsfmnsh0nwt3gxrrqiung.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%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fsfmnsh0nwt3gxrrqiung.png" alt=" " width="254" height="198"&gt;&lt;/a&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  &lt;strong&gt;⭐ Types of Schemas in Power BI&lt;/strong&gt;
&lt;/h2&gt;

&lt;h2&gt;
  
  
  ⭐ Star Schema
&lt;/h2&gt;

&lt;p&gt;The &lt;strong&gt;star schema&lt;/strong&gt; is the most recommended design for Power BI.  &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;At the center lies a &lt;strong&gt;fact table&lt;/strong&gt; containing measurable business data (e.g., sales, revenue, transactions).
&lt;/li&gt;
&lt;li&gt;Surrounding it are &lt;strong&gt;dimension tables&lt;/strong&gt; that provide descriptive attributes (e.g., customers, products, dates).
&lt;/li&gt;
&lt;li&gt;This structure resembles a star, with the fact table at the core and dimensions radiating outward.&lt;/li&gt;
&lt;/ul&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%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fyaqxaisw6icray81eoas.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%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fyaqxaisw6icray81eoas.png" alt=" " width="278" height="181"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Why it works:&lt;/strong&gt;  &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Simplifies relationships
&lt;/li&gt;
&lt;li&gt;Improves query performance
&lt;/li&gt;
&lt;li&gt;Aligns with DAX best practices
&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  ❄️ Snowflake Schema
&lt;/h2&gt;

&lt;p&gt;The &lt;strong&gt;snowflake schema&lt;/strong&gt; is a variation where dimension tables are normalized into multiple related tables.  &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Example: A product dimension split into product, category, and subcategory tables.
&lt;/li&gt;
&lt;li&gt;While this reduces redundancy, it introduces complexity and can slow down performance in Power BI.&lt;/li&gt;
&lt;/ul&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%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fsfrlpxnc9sr8r797fitc.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%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fsfrlpxnc9sr8r797fitc.png" alt=" " width="800" height="453"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Best practice:&lt;/strong&gt; Flatten dimensions where possible to maintain simplicity and speed.&lt;/p&gt;




&lt;h2&gt;
  
  
  🔗 Relationships
&lt;/h2&gt;

&lt;p&gt;Relationships define how tables connect in the model.  &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;One-to-many (1:*):&lt;/strong&gt; Most common, linking dimensions to facts.
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Many-to-many:&lt;/strong&gt; Avoid unless necessary, as they can complicate calculations.
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Single vs. bi-directional filters:&lt;/strong&gt; Use single-direction filtering for clarity and performance, unless bi-directional is explicitly required.&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  📊 Fact vs. Dimension Tables
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Fact tables:&lt;/strong&gt; Contain numeric, transactional data (e.g., sales amount, quantity).
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Dimension tables:&lt;/strong&gt; Contain descriptive attributes (e.g., customer name, region, product details).
&lt;/li&gt;
&lt;li&gt;Together, they enable slicing and dicing of metrics across different perspectives.&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  Why Good Modelling Matters
&lt;/h2&gt;

&lt;p&gt;A strong data model is critical for:  &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Performance:&lt;/strong&gt; Reduces memory usage and speeds up queries.
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Accuracy:&lt;/strong&gt; Ensures calculations return correct results.
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Scalability:&lt;/strong&gt; Supports future growth without redesign.
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Usability:&lt;/strong&gt; Makes reports intuitive for end-users.&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  ✅ Key Takeaways
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Prefer &lt;strong&gt;star schema&lt;/strong&gt; over snowflake for Power BI.
&lt;/li&gt;
&lt;li&gt;Keep relationships simple and directional.
&lt;/li&gt;
&lt;li&gt;Separate &lt;strong&gt;facts&lt;/strong&gt; (numbers) from &lt;strong&gt;dimensions&lt;/strong&gt; (descriptions).
&lt;/li&gt;
&lt;li&gt;Good modelling = faster, cleaner, and more reliable reporting.&lt;/li&gt;
&lt;/ul&gt;




&lt;p&gt;💡 &lt;em&gt;In Power BI, modelling is not just a technical step—it’s the foundation of trustworthy analytics.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>analytics</category>
      <category>data</category>
      <category>powerfuldevs</category>
    </item>
    <item>
      <title>#Mastering Excel like a Pro: An Absolute Beginner's Guide to Understanding Excel for Data Analytics.</title>
      <dc:creator>Joy Maritim</dc:creator>
      <pubDate>Sun, 25 Jan 2026 19:11:37 +0000</pubDate>
      <link>https://forem.com/jlangat103wq/mastering-excel-like-a-pro-an-absolute-beginners-guide-to-understanding-excel-for-data-analytics-3laj</link>
      <guid>https://forem.com/jlangat103wq/mastering-excel-like-a-pro-an-absolute-beginners-guide-to-understanding-excel-for-data-analytics-3laj</guid>
      <description>&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%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fvs1g2xcqnwzhz18bf87g.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%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fvs1g2xcqnwzhz18bf87g.png" alt=" " width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h1&gt;
  
  
  Introduction to MS Excel for Data Analytics
&lt;/h1&gt;

&lt;h2&gt;
  
  
  What is Data Analytics?
&lt;/h2&gt;

&lt;p&gt;Data analytics is the process of collecting, cleaning, analyzing, and interpreting data to discover useful information and support decision-making.&lt;/p&gt;

&lt;p&gt;Data can come from:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Sales records&lt;/li&gt;
&lt;li&gt;Student results&lt;/li&gt;
&lt;li&gt;Business transactions&lt;/li&gt;
&lt;li&gt;Surveys&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Microsoft Excel is one of the most popular tools used for &lt;strong&gt;basic data analysis&lt;/strong&gt;, especially for beginners.It can be used for data entry,calculations, analysis and visualization.&lt;/p&gt;




&lt;h2&gt;
  
  
  What is Microsoft Excel?
&lt;/h2&gt;

&lt;p&gt;Microsoft Excel is a spreadsheet application used to:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Store data in rows and columns&lt;/li&gt;
&lt;li&gt;Perform calculations&lt;/li&gt;
&lt;li&gt;Analyze data&lt;/li&gt;
&lt;li&gt;Create charts and reports&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Excel is widely used because it is:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Easy to learn&lt;/li&gt;
&lt;li&gt;Powerful&lt;/li&gt;
&lt;li&gt;Available in most offices and schools&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Advantages of Using Excel for Data Analytics&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Easy to use for beginners&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;No programming required&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Fast analysis for small to medium datasets&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  - Widely accepted in organizations
&lt;/h2&gt;

&lt;h2&gt;
  
  
  How Excel is Used for Data Analytics
&lt;/h2&gt;

&lt;h3&gt;
  
  
  1. Data Entry and Data Organization
&lt;/h3&gt;

&lt;p&gt;Excel allows users to enter data in a structured format using rows and columns.&lt;/p&gt;

&lt;p&gt;Examples of data that can be entered:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Names&lt;/li&gt;
&lt;li&gt;Dates&lt;/li&gt;
&lt;li&gt;Sales amounts&lt;/li&gt;
&lt;li&gt;Scores&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Each column represents a &lt;strong&gt;variable&lt;/strong&gt;, while each row represents a &lt;strong&gt;record&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;📸 &lt;strong&gt;Screenshot 1:&lt;/strong&gt;  &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%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fpnk6zrsy5t0tq8i67smo.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%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fpnk6zrsy5t0tq8i67smo.png" alt=" " width="800" height="319"&gt;&lt;/a&gt;&lt;/p&gt;




&lt;h3&gt;
  
  
  2. Data Cleaning
&lt;/h3&gt;

&lt;p&gt;Before analysis, data must be clean.&lt;/p&gt;

&lt;p&gt;Excel helps in:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Removing duplicates&lt;/li&gt;
&lt;li&gt;Correcting spelling errors&lt;/li&gt;
&lt;li&gt;Filling missing values&lt;/li&gt;
&lt;li&gt;Formatting numbers and dates&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;📸 &lt;strong&gt;Screenshot 2:&lt;/strong&gt;  &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%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fe1hqbc4zpxtyt7wbj9u4.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%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fe1hqbc4zpxtyt7wbj9u4.png" alt=" " width="800" height="518"&gt;&lt;/a&gt;&lt;/p&gt;




&lt;h3&gt;
  
  
  3. Sorting and Filtering Data
&lt;/h3&gt;

&lt;p&gt;Sorting helps arrange data in a specific order (ascending or descending).&lt;/p&gt;

&lt;p&gt;Filtering helps display only the data you need.&lt;/p&gt;

&lt;p&gt;Examples:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Sorting sales from highest to lowest&lt;/li&gt;
&lt;li&gt;Filtering students who scored above 60&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;STEPS on How to Filter Data:&lt;/strong&gt;&lt;br&gt;
Select the Header row&lt;br&gt;
Go to Data --&amp;gt; Filter&lt;br&gt;
Click the drop-down arrow to filter values&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;STEPS on How to Sort Data:&lt;/strong&gt;&lt;br&gt;
Select your Data range&lt;br&gt;
Go to Data --&amp;gt; Sort A to Z OR Z to A&lt;/p&gt;




&lt;h3&gt;
  
  
  4. Basic Calculations Using Formulas
&lt;/h3&gt;

&lt;p&gt;Excel supports formulas that help perform calculations automatically.&lt;/p&gt;

&lt;p&gt;Common formulas include:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;SUM()&lt;/code&gt; – Adds numbers in a range for example &lt;strong&gt;=SUM(L2:L633)&lt;/strong&gt;
&lt;/li&gt;
&lt;/ul&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%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fg0kwoz86p40b4ukdx2fn.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%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fg0kwoz86p40b4ukdx2fn.png" alt=" " width="800" height="437"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;AVERAGE()&lt;/code&gt; – Finds the mean of values for example &lt;strong&gt;=AVERAGE(M2:M633)&lt;/strong&gt;
&lt;/li&gt;
&lt;/ul&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%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fxyi5tkf12o8atk60nhb4.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%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fxyi5tkf12o8atk60nhb4.png" alt=" " width="800" height="356"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;COUNT()&lt;/code&gt; – Counts entries for example &lt;strong&gt;=count(o2:o633)&lt;/strong&gt;
&lt;/li&gt;
&lt;/ul&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%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Faqy3ywfh4vlhp9b9y2rc.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%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Faqy3ywfh4vlhp9b9y2rc.png" alt=" " width="800" height="439"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;MAX()&lt;/code&gt; and &lt;code&gt;MIN()&lt;/code&gt; – Finds highest and lowest values respectively for example &lt;strong&gt;=max(L2:L633)&lt;/strong&gt;
&lt;/li&gt;
&lt;/ul&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%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fomzzj4oomns5oc96xd3x.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%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fomzzj4oomns5oc96xd3x.png" alt=" " width="800" height="469"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;=MIN(L2:L633)&lt;/strong&gt;&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%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fu2ucdfoikitb6pepc94k.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%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fu2ucdfoikitb6pepc94k.png" alt=" " width="800" height="440"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Turning Numbers into insights using Pivot Tables and Charts
&lt;/h2&gt;

&lt;p&gt;Numbers alone can be a little tricky to interpret, but with just a few clicks, you can turn raw data into clear visual insights.&lt;/p&gt;

&lt;h2&gt;
  
  
  Pivot Table
&lt;/h2&gt;

&lt;p&gt;Pivot tables are helpful in summarizing large data sets quickly and efficiently.&lt;/p&gt;

&lt;h3&gt;
  
  
  How to Create a Pivot Table
&lt;/h3&gt;

&lt;p&gt;Click on a cell(eg E4)&lt;br&gt;
Select Insert --&amp;gt; Pivot Table&lt;br&gt;
Choose Location (New Worksheet)&lt;br&gt;
Click OK&lt;br&gt;
Using Pivot Table Fields, Select fields to add to the report&lt;br&gt;
Rows: Categories(eg Region)&lt;br&gt;
Values: Numbers to Calculate eg (Count of OrderID)&lt;br&gt;
Columns: Comparison Fields&lt;br&gt;
Filters: Limit displayed data&lt;/p&gt;

&lt;p&gt;Example: Count of OrderID by Region&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%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Ft51um18gubgmq8lkixj0.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%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Ft51um18gubgmq8lkixj0.png" alt=" " width="800" height="410"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Charts and Data Visualization
&lt;/h2&gt;

&lt;p&gt;Charts help to present data visually.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Key Chart Types and Uses&lt;/strong&gt;&lt;br&gt;
Column Chart: Vertical bars used for comparing values across categories.&lt;/p&gt;

&lt;p&gt;Bar Chart: Horizontal bars, ideal for comparing large sets of categories.&lt;/p&gt;

&lt;p&gt;Line Chart: Connects data points to visualize trends over time (days, months, years).&lt;/p&gt;

&lt;p&gt;Pie Chart: Displays data as slices of a circle, showing proportions of a total.&lt;/p&gt;

&lt;p&gt;Scatter (XY) Chart: Plots individual data points to show relationships or correlations between two variables.&lt;/p&gt;

&lt;p&gt;Area Chart: Similar to line charts, but filled below the line to emphasize the magnitude of change over time.&lt;/p&gt;

&lt;p&gt;Combo Chart: Uses two or more chart types (e.g., column and line) in one, useful for comparing different data types.&lt;/p&gt;

&lt;p&gt;Histogram/Pareto: Used for statistical analysis to show data distributions.&lt;/p&gt;

&lt;p&gt;Radar Chart: Compares multiple quantitative variables. &lt;/p&gt;

&lt;h3&gt;
  
  
  How to Create a Chart
&lt;/h3&gt;

&lt;p&gt;Select range of Data&lt;br&gt;
Go to Insert --&amp;gt; Charts&lt;br&gt;
Choose chart type&lt;br&gt;
Customize the Titles and labels&lt;/p&gt;

&lt;p&gt;For Example: Use PivotChart to Represent Count of OrderID By Region&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%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fqoqbpbya64koc2bg7o8x.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%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fqoqbpbya64koc2bg7o8x.png" alt=" " width="800" height="414"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Summary
&lt;/h2&gt;

&lt;p&gt;In this guide, you will learn how to:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Basics of Data Analytics and Excel&lt;/li&gt;
&lt;li&gt;Data Cleaning [Removing Duplicates]&lt;/li&gt;
&lt;li&gt;Sorting and Filtering Data&lt;/li&gt;
&lt;li&gt;Basic Calculations using Formulas in Excel&lt;/li&gt;
&lt;li&gt;Creating Pivot Tables&lt;/li&gt;
&lt;li&gt;Building Charts for Data Visualization&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Conclusion
&lt;/h2&gt;

&lt;p&gt;Microsoft Excel is a powerful and beginner-friendly tool for data analytics. It helps users organize data, clean it, perform calculations, and visualize insights using charts.&lt;/p&gt;

&lt;p&gt;For anyone starting a career in data analysis, Excel is an essential skill.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Author&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Joy Maritim&lt;br&gt;
&lt;strong&gt;Data Analyst&lt;/strong&gt;&lt;/p&gt;

</description>
      <category>beginners</category>
      <category>analytics</category>
      <category>data</category>
      <category>tutorial</category>
    </item>
  </channel>
</rss>
