<?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: Mugendi Mung'athia</title>
    <description>The latest articles on DEV Community by Mugendi Mung'athia (@mugendi_mungathia_ad20ca).</description>
    <link>https://dev.to/mugendi_mungathia_ad20ca</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.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3951180%2F16d68e1d-b91a-4e1c-823d-5a82038a2e59.png</url>
      <title>DEV Community: Mugendi Mung'athia</title>
      <link>https://dev.to/mugendi_mungathia_ad20ca</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/mugendi_mungathia_ad20ca"/>
    <language>en</language>
    <item>
      <title>Building Better Power BI Models; A Guide to Relationships, Fact Tables, Star Schema, and Joins</title>
      <dc:creator>Mugendi Mung'athia</dc:creator>
      <pubDate>Wed, 01 Jul 2026 20:48:05 +0000</pubDate>
      <link>https://dev.to/mugendi_mungathia_ad20ca/building-better-power-bi-models-a-guide-to-relationships-fact-tables-star-schema-and-joins-12g5</link>
      <guid>https://dev.to/mugendi_mungathia_ad20ca/building-better-power-bi-models-a-guide-to-relationships-fact-tables-star-schema-and-joins-12g5</guid>
      <description>&lt;h2&gt;
  
  
  Introduction
&lt;/h2&gt;

&lt;p&gt;While working with Power BI, I thought building reports was mainly about creating attractive charts and dashboards. As I worked with datasets containing sales, customers, products, and dates, I discovered that the real foundation of every Power BI report is the data model. Without properly defined relationships, visuals cannot communicate with each other effectively, calculations become unreliable, and filtering data becomes frustrating.&lt;/p&gt;

&lt;p&gt;This is where concepts such as fact tables, dimension tables, relationships, star schema, snowflake schema, cardinality, and cross-filter direction become essential. These are the building blocks that allow Power BI to transform raw data into meaningful insights.&lt;/p&gt;

&lt;p&gt;I'll explore how these concepts work together in Power BI, why choosing the right schema matters, and how good data modeling can improve both report performance and the overall reporting experience.&lt;/p&gt;

&lt;h2&gt;
  
  
  Data Modeling in Power BI
&lt;/h2&gt;

&lt;p&gt;Data modeling is the process of organizing data into related tables so that Power BI can analyze and visualize it correctly. Instead of storing everything in one large table, data is separated into logical tables that work together through relationships.&lt;/p&gt;

&lt;p&gt;A well-designed data model improves report performance, makes DAX calculations more accurate, and keeps dashboards easy to maintain as your data grows.&lt;/p&gt;

&lt;p&gt;In Power BI, data modeling takes place in the Model View, where you create and manage relationships between tables.&lt;/p&gt;

&lt;h2&gt;
  
  
  Fact Tables
&lt;/h2&gt;

&lt;p&gt;A Fact Table is the central table in a Power BI data model. It stores measurable business data such as sales, revenue, profit, quantity sold, or transactions. Unlike dimension tables, fact tables mainly contain numbers that can be aggregated and analyzed.&lt;/p&gt;

&lt;p&gt;Fact tables usually grow very large because every business transaction is recorded here. They also contain foreign keys that link to dimension tables such as Products, Customers, or Dates.&lt;/p&gt;

&lt;h3&gt;
  
  
  Example of a Fact Table
&lt;/h3&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;SaleID&lt;/th&gt;
&lt;th&gt;ProductID&lt;/th&gt;
&lt;th&gt;CustomerID&lt;/th&gt;
&lt;th&gt;DateID&lt;/th&gt;
&lt;th&gt;Quantity&lt;/th&gt;
&lt;th&gt;SalesAmount&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;1001&lt;/td&gt;
&lt;td&gt;P001&lt;/td&gt;
&lt;td&gt;C001&lt;/td&gt;
&lt;td&gt;D001&lt;/td&gt;
&lt;td&gt;2&lt;/td&gt;
&lt;td&gt;1500&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;1002&lt;/td&gt;
&lt;td&gt;P003&lt;/td&gt;
&lt;td&gt;C002&lt;/td&gt;
&lt;td&gt;D001&lt;/td&gt;
&lt;td&gt;1&lt;/td&gt;
&lt;td&gt;800&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h2&gt;
  
  
  Dimension Tables
&lt;/h2&gt;

&lt;p&gt;A Dimension Table stores descriptive information about the data in a fact table. Instead of containing business transactions, it provides context that helps us understand and analyze those transactions.&lt;/p&gt;

&lt;p&gt;For example, instead of storing product names in the Fact Sales table, Power BI links to a Product dimension table using a common key such as &lt;code&gt;ProductID&lt;/code&gt;.&lt;/p&gt;

&lt;h3&gt;
  
  
  Example of a Dimension Table
&lt;/h3&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;ProductID&lt;/th&gt;
&lt;th&gt;ProductName&lt;/th&gt;
&lt;th&gt;Category&lt;/th&gt;
&lt;th&gt;Brand&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;P001&lt;/td&gt;
&lt;td&gt;Laptop&lt;/td&gt;
&lt;td&gt;Electronics&lt;/td&gt;
&lt;td&gt;HP&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;P002&lt;/td&gt;
&lt;td&gt;Phone&lt;/td&gt;
&lt;td&gt;Electronics&lt;/td&gt;
&lt;td&gt;Samsung&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h3&gt;
  
  
  Why Dimension Tables Matter
&lt;/h3&gt;

&lt;p&gt;Dimension tables make reports easier to read by replacing IDs with meaningful information such as product names, customer names, locations, and dates.&lt;/p&gt;

&lt;h2&gt;
  
  
  Schemas
&lt;/h2&gt;

&lt;p&gt;A schema is the way data is organized and structured in a database or data model. In Power BI, a schema defines how fact tables and dimension tables are arranged and connected through relationships.&lt;/p&gt;

&lt;p&gt;Choosing the right schema is important because it affects report performance, data organization, and how easy it is to build dashboards and write DAX measures.&lt;/p&gt;

&lt;p&gt;Power BI primarily uses two schema designs:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Star Schema&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Snowflake Schema&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Both schemas organize data differently, and each has its own strengths and weaknesses. Understanding when to use each one is an important part of building an efficient Power BI data model.&lt;/p&gt;

&lt;h2&gt;
  
  
  1. Star Schema
&lt;/h2&gt;

&lt;p&gt;A Star Schema is the most recommended data model in Power BI. It consists of one central fact table connected directly to multiple dimension tables. Since the structure resembles a star, it is called a Star Schema.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;                 Dim Date
                     |
                     |
Dim Customer ---- Fact Sales ---- Dim Product
                     |
                     |
               Dim Store
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  Advantages
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Faster query performance.&lt;/li&gt;
&lt;li&gt;Simple relationship structure.&lt;/li&gt;
&lt;li&gt;Easy to troubleshoot.&lt;/li&gt;
&lt;li&gt;It is easy to understand.&lt;/li&gt;
&lt;li&gt;Improves report performance.&lt;/li&gt;
&lt;li&gt;Simplifies DAX calculations.&lt;/li&gt;
&lt;li&gt;Makes reports easier to maintain.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Disadvantages
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Dimension tables may contain duplicated information.&lt;/li&gt;
&lt;li&gt;Can use slightly more storage than a normalized model.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  2. Snowflake Schema
&lt;/h2&gt;

&lt;p&gt;A snowflake schema is an extension of the Star Schema where dimension tables are further divided into smaller related tables. This process is known as normalization, and it helps reduce data redundancy.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;               Dim Category
                     |
               Dim Product
                     |
                     |
Dim Customer ---- Fact Sales ---- Dim Date
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;In this model, the &lt;strong&gt;Product&lt;/strong&gt; table no longer stores category information directly. Instead, it connects to a separate &lt;strong&gt;Category&lt;/strong&gt; table.&lt;/p&gt;

&lt;h3&gt;
  
  
  Advantages
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Less data redundancy.&lt;/li&gt;
&lt;li&gt;Better data integrity.&lt;/li&gt;
&lt;li&gt;Easier to update shared information.&lt;/li&gt;
&lt;li&gt;Reduces duplicated data.&lt;/li&gt;
&lt;li&gt;Improves data consistency.&lt;/li&gt;
&lt;li&gt;Suitable for complex datasets.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Disadvantages
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;More relationships to manage.&lt;/li&gt;
&lt;li&gt;Slightly slower queries due to additional joins.&lt;/li&gt;
&lt;li&gt;More complex to understand than a Star Schema.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Cardinality in Power BI
&lt;/h2&gt;

&lt;p&gt;Cardinality defines how rows in one table relate to rows in another. Choosing the correct cardinality ensures that relationships work as expected and that reports return accurate results.&lt;/p&gt;

&lt;p&gt;Power BI supports four types of cardinality.&lt;/p&gt;

&lt;h3&gt;
  
  
  1. One-to-One
&lt;/h3&gt;

&lt;p&gt;Each row in one table matches exactly one row in another table.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Example:&lt;/strong&gt; An employee table linked to an employee details table, where each employee has only one record.&lt;/p&gt;

&lt;h3&gt;
  
  
  2. One-to-Many
&lt;/h3&gt;

&lt;p&gt;This is the most common relationship in Power BI. One record in a dimension table relates to many records in a fact table.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Example:&lt;/strong&gt; One product can appear in many sales transactions.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;This is the recommended cardinality when building a Star Schema.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h3&gt;
  
  
  3. Many-to-One
&lt;/h3&gt;

&lt;p&gt;This is simply the reverse of a One-to-Many relationship. Many records in one table relate to a single record in another table.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Example:&lt;/strong&gt; Many sales records belonging to one customer.&lt;/p&gt;

&lt;h3&gt;
  
  
  4. Many-to-Many
&lt;/h3&gt;

&lt;p&gt;Records in both tables can have multiple matching values.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Example:&lt;/strong&gt; Students enrolling in multiple courses, while each course has multiple students.&lt;/p&gt;

&lt;h2&gt;
  
  
  Cross Filter Direction
&lt;/h2&gt;

&lt;p&gt;Cross Filter Direction determines how filters move between related tables in Power BI. It controls how one table influences another when interacting with visuals and calculations.&lt;/p&gt;

&lt;p&gt;Power BI provides two cross filter options:&lt;/p&gt;

&lt;h3&gt;
  
  
  1. Single
&lt;/h3&gt;

&lt;p&gt;A single cross filter allows data to flow in one direction, usually from a dimension table to a fact table.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Dim Product  ─────────▶  Fact Sales
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This is the default option in Power BI and is recommended for most data models because it improves performance and reduces ambiguity.&lt;/p&gt;

&lt;h3&gt;
  
  
  2. Both
&lt;/h3&gt;

&lt;p&gt;A both cross filter allows data to flow in both directions.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Dim Product  ◀────────▶  Fact Sales
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This option is useful when two tables need to filter each other. However, it should be used carefully because it can create ambiguous relationships and slow down report performance.&lt;/p&gt;

&lt;h2&gt;
  
  
  Joins
&lt;/h2&gt;

&lt;p&gt;Before creating relationships in the data model, Power BI allows us to combine data using &lt;strong&gt;Merge Queries&lt;/strong&gt; in Power Query. A merge operation joins two tables based on a matching column, similar to how relationships work in databases.&lt;/p&gt;

&lt;p&gt;To create a merge, go to:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Home → Merge Queries&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Power BI provides several join types depending on the results you want.&lt;/p&gt;

&lt;h3&gt;
  
  
  1. Inner Join
&lt;/h3&gt;

&lt;p&gt;Returns only matching rows from both tables.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Customers          Orders

CustomerID         CustomerID
1                  1
2                  2
3                  4

Result:
1
2
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Used when :&lt;/strong&gt; you only need records that exist in both tables.&lt;/p&gt;

&lt;h3&gt;
  
  
  2. Left Outer Join
&lt;/h3&gt;

&lt;p&gt;Returns all rows from the first table and matching rows from the second table.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Customers          Orders

1                  1
2                  2
3                  4

Result:
1
2
3
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Used when :&lt;/strong&gt; the first table is your primary table and you don't want to lose any records.&lt;/p&gt;

&lt;h3&gt;
  
  
  3. Right Outer Join
&lt;/h3&gt;

&lt;p&gt;Returns all rows from the second table and matching rows from the first table.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Used when :&lt;/strong&gt; the second table is the primary source of information.&lt;/p&gt;

&lt;h3&gt;
  
  
  4. Full Outer Join
&lt;/h3&gt;

&lt;p&gt;Returns all rows from both tables, whether they match or not.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Use when:&lt;/strong&gt; you want a complete view of both datasets.&lt;/p&gt;

&lt;h3&gt;
  
  
  5. Left Anti Join
&lt;/h3&gt;

&lt;p&gt;Returns only rows from the first table that do not have a match in the second table.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Used when:&lt;/strong&gt; Finding missing records.&lt;/p&gt;

&lt;h3&gt;
  
  
  6. Right Anti Join
&lt;/h3&gt;

&lt;p&gt;Returns only rows from the second table that do not have a match in the first table.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Used when:&lt;/strong&gt; Identifying records that exist in one dataset but not the other.&lt;/p&gt;

&lt;h3&gt;
  
  
  Importance of Joins
&lt;/h3&gt;

&lt;p&gt;Joins help prepare data before it enters the Power BI model. They are useful for:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Combining datasets.&lt;/li&gt;
&lt;li&gt;Identifying missing records.&lt;/li&gt;
&lt;li&gt;Enriching data with additional information.&lt;/li&gt;
&lt;li&gt;Cleaning and transforming data before analysis.&lt;/li&gt;
&lt;/ul&gt;

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

&lt;p&gt;Data modeling is the foundation of every successful Power BI report. Understanding concepts such as relationships, fact tables, dimension tables, schemas, cardinality, cross-filter direction, and Power Query joins makes it easier to build reports that are both accurate and efficient.&lt;/p&gt;

&lt;p&gt;As I continue learning Power BI, I've realized that investing time in building a strong data model before creating visuals leads to cleaner dashboards, better performance, and more meaningful insights.&lt;/p&gt;

</description>
      <category>datascience</category>
      <category>database</category>
      <category>data</category>
      <category>powerfuldevs</category>
    </item>
    <item>
      <title>How Excel is Used in Real-World Data Analysis</title>
      <dc:creator>Mugendi Mung'athia</dc:creator>
      <pubDate>Sun, 07 Jun 2026 19:32:09 +0000</pubDate>
      <link>https://dev.to/mugendi_mungathia_ad20ca/how-excel-is-used-in-real-world-data-analysis-3dhk</link>
      <guid>https://dev.to/mugendi_mungathia_ad20ca/how-excel-is-used-in-real-world-data-analysis-3dhk</guid>
      <description>&lt;h1&gt;
  
  
  Introduction
&lt;/h1&gt;

&lt;p&gt;Most people I included mainly associate Microsoft Excel with storing information, data entry and performing basic calculations. However, after enrolling in Data Science and Analytic course and spending my first week learning Excel, I have come to appreciate how important it is in handling and analyzing data. I now understand why Excel continues to be used by businesses, researchers, and organizations around the world. It provides simple but powerful tools that help users organize data, identify patterns, and make informed decisions. Excel isn't just a basic spreadsheet program, it is essentially the backbone of real world data analysis and the quiet engine behind decisions making in many organizations.&lt;/p&gt;

&lt;h1&gt;
  
  
  Ways Excel is used in real-world data analysis
&lt;/h1&gt;

&lt;h2&gt;
  
  
  1. Business Decision-Making
&lt;/h2&gt;

&lt;p&gt;One of the most common uses of Excel in the real world is supporting business decisions. Companies collect large amounts of information such as sales records, customer data, and inventory levels. Excel helps organize this information into a format that is easy to understand and analyze.&lt;/p&gt;

&lt;p&gt;For example, a business can use Excel to compare monthly sales and identify which products are performing best. Managers can then use this information to make decisions about stock levels, promotions, and future business strategies.&lt;/p&gt;

&lt;h2&gt;
  
  
  2. Financial Reporting
&lt;/h2&gt;

&lt;p&gt;Excel is also widely used in financial management and reporting. Organizations use spreadsheets to track expenses, prepare budgets, calculate profits, and monitor overall financial performance.&lt;/p&gt;

&lt;p&gt;A company can use Excel to compare actual spending against planned budgets and identify areas where costs are increasing. This makes it easier to manage resources and make financial plans based on accurate information.&lt;/p&gt;

&lt;h2&gt;
  
  
  3. Marketing Performance Analysis
&lt;/h2&gt;

&lt;p&gt;Marketing teams often use Excel to measure the success of their campaigns. Information such as website visits, social media engagement, customer responses, and sales can be recorded and analyzed in spreadsheets.&lt;/p&gt;

&lt;p&gt;By studying this data, businesses can determine which marketing strategies are effective and which areas need improvement. This helps organizations make better decisions about future marketing activities.&lt;/p&gt;

&lt;h1&gt;
  
  
  Excel Features That I have learned
&lt;/h1&gt;

&lt;h3&gt;
  
  
  1. SUM Function
&lt;/h3&gt;

&lt;p&gt;The SUM function is used to add. It can be applied when calculating total sales, expenses, or quantities in a dataset. Instead of adding numbers manually, Excel performs the calculation automatically and accurately. Here is an example: &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%2Fjn762yd0t4d40mrg7ady.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%2Fjn762yd0t4d40mrg7ady.png" alt="Excel SUM function showing total marks calculation" width="800" height="254"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  2.AVERAGE Function
&lt;/h3&gt;

&lt;p&gt;The AVERAGE function calculates the mean value of a group of numbers. This can be useful when analyzing average sales, average test scores, or average monthly expenses. It helps provide a general understanding of the data. Here is an example:&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%2F2v7e0rd0qif37s3wkrlf.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%2F2v7e0rd0qif37s3wkrlf.png" alt="Excel AVERAGE function calculating class average" width="800" height="274"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  3.COUNT IF Function
&lt;/h3&gt;

&lt;p&gt;The COUNT IF function is used to determine how many cells contain numerical values. This is especially useful when working with large datasets because it helps users know how many records are available for analysis. Here is an example: &lt;br&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%2Fht1h63fb2c5kr4ihj72c.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%2Fht1h63fb2c5kr4ihj72c.png" alt="Excel COUNTIF function counting students above 75 marks" width="800" height="271"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  My personal reflection:
&lt;/h2&gt;

&lt;p&gt;Learning Excel has changed the way I view data. Previously, I saw data as just numbers arranged in rows and columns. Now I understand that data can provide valuable insights when it is organized and analyzed properly.&lt;/p&gt;

&lt;p&gt;What has impressed me most is how even simple Excel formulas can help answer important questions and reveal patterns that might not be obvious at first glance. I have also realized that data analysis is not only about working with numbers but also about finding information that can support decision-making.&lt;/p&gt;

&lt;p&gt;As I continue with my Data Science and Analytics course, I am excited to learn more tools that supplement Excel and discover how they can be used to solve real-world problems.  &lt;/p&gt;

</description>
      <category>datascience</category>
      <category>data</category>
    </item>
  </channel>
</rss>
