<?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: Charleen Bakhita</title>
    <description>The latest articles on DEV Community by Charleen Bakhita (@charleen_bakhita).</description>
    <link>https://dev.to/charleen_bakhita</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%2F3952249%2F1bc64ffb-749d-4324-9da0-c72a1ecdaa4c.png</url>
      <title>DEV Community: Charleen Bakhita</title>
      <link>https://dev.to/charleen_bakhita</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/charleen_bakhita"/>
    <language>en</language>
    <item>
      <title>Joins, Relationships and Schemas: Power BI's Hidden Love Triangle</title>
      <dc:creator>Charleen Bakhita</dc:creator>
      <pubDate>Wed, 01 Jul 2026 16:56:05 +0000</pubDate>
      <link>https://dev.to/charleen_bakhita/joins-relationships-and-schemas-power-bis-hidden-love-triangle-1aa4</link>
      <guid>https://dev.to/charleen_bakhita/joins-relationships-and-schemas-power-bis-hidden-love-triangle-1aa4</guid>
      <description>&lt;p&gt;You have built a beautiful dashboard with stunning visuals and a coordinated color scheme but your reports are slow, your numbers do not add up and users are losing confidence and trust. The culprit? A poorly designed data model. In Power BI, your visuals are only as good as the relationships and schemas behind them.&lt;/p&gt;

&lt;h2&gt;
  
  
  What is Power BI?
&lt;/h2&gt;

&lt;p&gt;While Power BI is often classified as a visualization tool, the reality is that Power BI is not a single tool but rather part of a collection of interrelated tools and services that form a complete business intelligence ecosystem. (Deckler, 2025). Business Intelligence is leveraging data to make better decisions.&lt;/p&gt;

&lt;p&gt;Most organizations may not store all their information in a single table. Client details may exist in one database, sales transactions in another and inventory detail in a third. Before meaningful reports and dashboards can be created, scattered data must be organized and connected. Power BI achieves this through data modeling, schemas, joins and relationships. Together, these concepts form the foundation of efficient data analysis by ensuring data is accurate, consistent and easy to explore.&lt;/p&gt;

&lt;h2&gt;
  
  
  Understanding data modelling
&lt;/h2&gt;

&lt;h4&gt;
  
  
  What is data modelling?
&lt;/h4&gt;

&lt;p&gt;Data modelling can be explained as the process of organizing data into a logical structure to allow better querying and analysis all while reducing redundancy and maintaining integrity. It involves identifying tables, defining relationships, selecting appropriate schemas and ensuring data is structured and ready for reporting.&lt;/p&gt;

&lt;p&gt;Think of it like moving and settling in in a new kitchen:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Raw data: Utensils, supplies and kitchen utilities are clattered and mixed in moving boxes.&lt;/li&gt;
&lt;li&gt;Data modelling: Arranging utilities in labeled containers and kitchen cupboards, grouping similar items together and creating a system to find things quickly.&lt;/li&gt;
&lt;li&gt;Power BI Report: The meal you cook in your now organized kitchen.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  What data modeling does for you.
&lt;/h3&gt;

&lt;ol&gt;
&lt;li&gt;Creates structure: Turns messy data into logical tables.&lt;/li&gt;
&lt;li&gt;Establishes relationships: Defines how tables connect to one another.&lt;/li&gt;
&lt;li&gt;Enables calculations: Makes DAX formulas work correctly.&lt;/li&gt;
&lt;li&gt;Improves performance: Reports run faster.&lt;/li&gt;
&lt;li&gt;Ensures accuracy: Consistent numbers that everyone can trust.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Without proper data modeling, you are likely to experience &lt;em&gt;&lt;strong&gt;slow reports&lt;/strong&gt;&lt;/em&gt;, &lt;em&gt;&lt;strong&gt;memory crashes&lt;/strong&gt;&lt;/em&gt; where reports struggle to refresh or &lt;em&gt;&lt;strong&gt;maintenance nightmare&lt;/strong&gt;&lt;/em&gt; where every change breaks  a logic somewhere else.&lt;/p&gt;

&lt;h3&gt;
  
  
  Core components of data modeling
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;1. Tables&lt;/strong&gt;&lt;br&gt;
Tables are the containers for your data. Each table holds related information and it is therefore recommended that each table should represent a single concept, that is, avoid mixing a table that has client details with a table that has inventory details.&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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fpdjmdlzo408l8f1qmhzx.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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fpdjmdlzo408l8f1qmhzx.png" alt="Example of a table" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2. Columns and Data types.&lt;/strong&gt;&lt;br&gt;
Columns are the attributes/ fields within a table. Columns can either have textual data, numeric data or date/time data.&lt;br&gt;
Power BI recognizes different data types like:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Number types: Decimal number, Fixed decimal, Whole number etc.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Text type.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Date types: Date, Date/Time, Time &lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Other types: Binary.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;3. Keys&lt;/strong&gt;&lt;br&gt;
Keys are special columns that create connections between tables.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Primary key (PK): This is a unique identifier for each row. A table usually has one primary key.&lt;/li&gt;
&lt;li&gt;Foreign key (FK): References a primary key in another table and can have duplicates. They create the connection.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Now while tables give us structure, relationships give us context. An orders table tells us what was sold and a clients table tells us who bought it. Only when these tables are connected through relationships can we truly understand who our best customers are what products they love and how our business is growing over time. &lt;/p&gt;

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

&lt;p&gt;A relationship is a connection between two tables that tells Power BI how they relate to each other. Relationships  allow data to flow between tables enabling an analyst to analyze a business as a connected whole rather than isolated pieces.&lt;br&gt;
Cardinality describes how many rows in one table can link to rows in another table.&lt;/p&gt;

&lt;h3&gt;
  
  
  Types of Cardinality
&lt;/h3&gt;

&lt;h4&gt;
  
  
  i. One to One (1:1)
&lt;/h4&gt;

&lt;p&gt;A row in Table A connects to at most one row in Table B e.g. Each person can have only one passport and each passport is assigned to only one person.&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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fb3ldnxi5wfkcnq4170vo.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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fb3ldnxi5wfkcnq4170vo.png" alt="One to one relationship example" width="800" height="279"&gt;&lt;/a&gt;&lt;br&gt;
&lt;em&gt;Diagram showing a one-to-one relationship from &lt;a href="https://database.guide/what-is-a-one-to-one-relationship/" rel="noopener noreferrer"&gt;Database.Guide&lt;/a&gt; is used for illustrative purposes. Source: &lt;a href="https://database.guide/what-is-a-one-to-one-relationship/" rel="noopener noreferrer"&gt;What is a One-To-One Relationship?&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  ii. One to Many(1:*)
&lt;/h4&gt;

&lt;p&gt;A single row in Table A can connect to multiple rows in Table B but a row in Table B only connects to one row in Table A. &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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fjyjtyzxwrx3zktsnbnui.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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fjyjtyzxwrx3zktsnbnui.png" alt="One to Many relationship example" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h5&gt;
  
  
  iii. Many to Many(:)
&lt;/h5&gt;

&lt;p&gt;Multiple rows in Table A relate to multiple rows in Table B e.g. A book can have multiple authors and an author can write many books.&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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fjmcegdsyuokvnp4oywll.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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fjmcegdsyuokvnp4oywll.png" alt="Many to Many relationship example" width="799" height="273"&gt;&lt;/a&gt;&lt;br&gt;
&lt;em&gt;Diagram showing a many to many relationship from &lt;a href="https://database.guide/what-is-a-many-to-many-relationship/" rel="noopener noreferrer"&gt;Database.Guide&lt;/a&gt; is used for illustrative purposes. Source: &lt;a href="https://database.guide/what-is-a-many-to-many-relationship/" rel="noopener noreferrer"&gt;What is a Many-To-Many Relationship?&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Power BI can only use one relationship at a time by default.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Active relationship: The default connection Power BI uses automatically(Shown as a solid line).&lt;/li&gt;
&lt;li&gt;Inactive relationship: A connection that exists but is turned off by default(Shown as a dashed line).&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Think of active vs inactive relationships like the default route on your Google Maps versus the alternative routes you can take. The map always uses the default route (active relationship) unless you specifically tell it to use an alternative (inactive relationship). Both routes exist but only one is used automatically. &lt;/p&gt;

&lt;p&gt;While &lt;strong&gt;relationships&lt;/strong&gt; connect tables in the model &lt;strong&gt;joins&lt;/strong&gt; merge tables in Power Query.&lt;/p&gt;

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

&lt;p&gt;Joins combine data from two or more tables into a single table during data preparation.&lt;/p&gt;

&lt;h3&gt;
  
  
  Common type of joins.
&lt;/h3&gt;

&lt;ol&gt;
&lt;li&gt;Left Outer: Keep all rows from the left table and matching ones from right.&lt;/li&gt;
&lt;li&gt;Right Outer: Keep all rows from the right table and matching ones from left.&lt;/li&gt;
&lt;li&gt;Full Outer: Keep all rows from both.&lt;/li&gt;
&lt;li&gt;Inner: Returns only matching rows in both.&lt;/li&gt;
&lt;li&gt;Left Anti: Returns only rows from the left table that have no match in the right table.&lt;/li&gt;
&lt;li&gt;Right Anti: Returns only rows from the right table that have no match in the left table.&lt;/li&gt;
&lt;/ol&gt;

&lt;h3&gt;
  
  
  Why Joins are important.
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Helps in reducing duplication.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Helps to save storage space.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Helps to improve data consistency.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Helps make databases easier to maintain.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Joins vs Relationships
&lt;/h3&gt;

&lt;h4&gt;
  
  
  When to use joins
&lt;/h4&gt;

&lt;p&gt;When:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;You need to add columns to an existing table.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;You are bringing in lookup data.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;You are flattening a schema.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;You need one combined table for a specific purpose.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h4&gt;
  
  
  When to use relationships
&lt;/h4&gt;

&lt;p&gt;When:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;You want to analyze data across multiple tables.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;You need dynamic filtering across tables : Slicers and filters to affect related tables.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;You're building reports and dashboards.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;You are creating a star schema.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;You want to avoid duplicating data e.g. when you need to use the same dimension across multiple facts.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Now that we understand how to combine tables using joins and how to connect them using relationships, a bigger question emerges: &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;em&gt;How should we organize all these tables?&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Think of it this way: Joins are like connecting individual LEGO bricks (table to table). Relationships are like the instructions that tell you which bricks connect. But a schema is the overall blueprint that shows you exactly how every piece fits together to create something meaningful.&lt;/p&gt;

&lt;h2&gt;
  
  
  Schema
&lt;/h2&gt;

&lt;p&gt;A schema is a blueprint of your data model. It defines:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;What tables you have.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;What columns each table contains.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;How tables relate to each other.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;What rules govern the data.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  1. Star schema
&lt;/h3&gt;

&lt;p&gt;A star schema is a data modeling design where one central fact table is surrounded by multiple dimension tables like a star.&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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F8yie51yyxm210fl751p5.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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F8yie51yyxm210fl751p5.png" alt="Star schema image" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  The Anatomy of a star schema
&lt;/h4&gt;

&lt;h6&gt;
  
  
  Fact table
&lt;/h6&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Usually at the center and surrounded by dimension tables.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Contains numbers you want to analyze (measures).&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Contains foreign keys linking to dimensions.&lt;/p&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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fh8ep9qbanphm92lsxa9c.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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fh8ep9qbanphm92lsxa9c.png" alt="Facts table image" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h5&gt;
  
  
  Dimension tables
&lt;/h5&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Usually the lookup or reference tables.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Contain descriptive attributes.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Provide context to the fact table.&lt;/p&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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F3l9pdwrhdrn5669zrrvg.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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F3l9pdwrhdrn5669zrrvg.png" alt="Dimension tables image" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Why a star schema is recommended in Power BI
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;1. Better Performance&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;When you query a flat table, Power BI has to:&lt;br&gt;
Scan through every column that might be needed, apply filters to text values which is computationally expensive, evaluate complex filtering conditions and process large amounts of data just to find what you need.&lt;/p&gt;

&lt;p&gt;With a star schema:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;The engine knows exactly which columns are in which tables.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;It can apply filters to dimension tables first and scan the fact table for the filtered subset.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;The query optimizer can use the relationship structure to build efficient execution plans and the result is that queries can run in milliseconds instead of seconds or minutes.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;2. Simpler data model&lt;/strong&gt;&lt;br&gt;
A star schema is easy to understand because all dimension tables connect directly to the central fact table. This straightforward structure makes it easier for both developers and report users to navigate the model.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;3. Easier report creation&lt;/strong&gt;&lt;br&gt;
Power BI builds visuals by combining measures from the fact table with descriptive attributes from the dimension tables.&lt;br&gt;
Because all these tables connect directly to the fact table, creating charts, slicers and dashboards becomes much simpler.&lt;/p&gt;

&lt;h2&gt;
  
  
  In Conclusion:
&lt;/h2&gt;

&lt;p&gt;A well designed data model is the difference between a dashboard that &lt;strong&gt;&lt;em&gt;delights&lt;/em&gt;&lt;/strong&gt; and one that &lt;em&gt;&lt;strong&gt;disappoints&lt;/strong&gt;&lt;/em&gt;. It transforms scattered, disconnected data into a trusted source of truth that drives better decisions. Whether you are connecting tables through &lt;strong&gt;relationships,&lt;/strong&gt; combining them with &lt;strong&gt;joins&lt;/strong&gt; or structuring them into a &lt;strong&gt;star schema,&lt;/strong&gt; every decision you make in the modeling phase translates through to every visual, every calculation and every user interaction.&lt;/p&gt;

&lt;p&gt;In the end, Power BI is only as powerful as the data model it sits on. Build it well and everything else becomes simpler. Build it poorly and no amount of visual polish can save it. Therefore, before you build your next dashboard, map out your tables, identify your keys, define your relationships and choose your schema. Your future self and your users will thank you.&lt;/p&gt;

</description>
      <category>dataanalytics</category>
      <category>powerbi</category>
      <category>datamodelling</category>
      <category>reportoptimization</category>
    </item>
    <item>
      <title>Starting with Excel: How it transforms data to insights.</title>
      <dc:creator>Charleen Bakhita</dc:creator>
      <pubDate>Sun, 07 Jun 2026 18:24:41 +0000</pubDate>
      <link>https://dev.to/charleen_bakhita/starting-with-excel-how-it-transforms-data-to-insights-3g24</link>
      <guid>https://dev.to/charleen_bakhita/starting-with-excel-how-it-transforms-data-to-insights-3g24</guid>
      <description>&lt;h1&gt;
  
  
  Introduction
&lt;/h1&gt;

&lt;p&gt;Excel is a powerful spreadsheet program developed by Microsoft that is used to calculate, organize and analyze data. It provides a way of turning raw data into meaningful insights through handling large datasets more efficiently from tracking sales and expenses to analyzing trends.&lt;/p&gt;

&lt;h1&gt;
  
  
  Various Excel applications.
&lt;/h1&gt;

&lt;ol&gt;
&lt;li&gt;Decision making:
One of the major ways Excel is used in real-world data analysis is to support decision making. Companies collect large volumes of raw data everyday ranging from customer information, sales records to log records. This data is organized and cleaned by Excel into tables, charts and reports making it easier to derive insights and identify trends that  help in decision making.&lt;/li&gt;
&lt;li&gt;Financial reporting:
Excel is also widely used for financial reporting and budgeting. Businesses use it to record income and expenses, calculate profit margins and create financial predictions. By analyzing financial data, organizations are able to monitor their performance over time and plan better for future growth.&lt;/li&gt;
&lt;li&gt;Marketing performance:
In addition to that, Excel can be used in market analysis. Marketing teams utilize Excel to track campaign and social media performance, customer engagement and product popularity. Insights derived from this data helps companies improve their marketing strategies and better understand consumer behavior.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;This past week I was introduced to several data cleaning features and formulas used in Excel to make analysis less nerve-wracking. For example, in stead of editing data cell by cell in the case of duplicate values, you can use the Find and Replace filter. Also, conditional formatting makes it easier to highlight specific cell ranges and erase duplicate values. Functions and formulas make it easy to obtain statistical and mathematical data.&lt;/p&gt;

&lt;p&gt;Learning Excel helps you look at data differently. Instead of data being just a bunch of texts, numbers or logs, data becomes something you can use to gain insights, make decisions, reveal patterns and make predictions.&lt;/p&gt;

&lt;p&gt;Looking forward to see what more Excel can do with data and how to use it to solve real world problems.&lt;/p&gt;

</description>
      <category>excel</category>
      <category>data</category>
      <category>dataanalysis</category>
    </item>
  </channel>
</rss>
