<?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: Pepsy-11y</title>
    <description>The latest articles on DEV Community by Pepsy-11y (@pepsy11y).</description>
    <link>https://dev.to/pepsy11y</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%2F3972463%2F940c22aa-f851-4f1a-b846-87384d3b55f0.png</url>
      <title>DEV Community: Pepsy-11y</title>
      <link>https://dev.to/pepsy11y</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/pepsy11y"/>
    <language>en</language>
    <item>
      <title>Modelling, Joins, Relationships and different Schemas</title>
      <dc:creator>Pepsy-11y</dc:creator>
      <pubDate>Sun, 21 Jun 2026 12:14:25 +0000</pubDate>
      <link>https://dev.to/pepsy11y/modelling-joins-relationships-and-different-schemas-581o</link>
      <guid>https://dev.to/pepsy11y/modelling-joins-relationships-and-different-schemas-581o</guid>
      <description>&lt;p&gt;&lt;u&gt;Data Modelling&lt;/u&gt; is the invisible architecture that structures your data so it is fast accurate and scalable.&lt;br&gt;
It is the process of identifying, organizing and defining the types of data a business collects and the relationship between them.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Joins&lt;/strong&gt;&lt;br&gt;
1.&lt;u&gt;Left OuterJoin&lt;/u&gt;&lt;br&gt;
Keeps all rows from the first(left) table and adds the matching rows from the second (right) table.&lt;br&gt;
If there is no match,it returns null for the right table's column.&lt;/p&gt;

&lt;p&gt;2.&lt;u&gt;Right Outer Join&lt;/u&gt;&lt;br&gt;
It returns all the rows from the right table that are specified in the right outer join clause, not just the rows in which the columns match. &lt;/p&gt;

&lt;p&gt;3.&lt;u&gt;Inner Join&lt;/u&gt;&lt;br&gt;
Also known as a simple join, returns rows from joined tables that have matching rows.&lt;/p&gt;

&lt;p&gt;4.&lt;u&gt;Full Outer Join&lt;/u&gt;&lt;br&gt;
It returns all joined rows from both tables, plus one row for each unmatched left row(extended with nulls on the right), plus one row for each unmatched right row(extended with nulls on the left).&lt;/p&gt;

&lt;p&gt;5.&lt;u&gt;Cross Join&lt;/u&gt;&lt;br&gt;
A cross join returns all possible combinations of rows of two tables(also called a Cartesian product).&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Relationships&lt;/strong&gt;&lt;br&gt;
1.&lt;u&gt;Cardinality&lt;/u&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;One-to-Many&lt;br&gt;
On the one-side of the relationship the column must have unique values; on the many-side the value can(and usually does) contain duplicates.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;One-to-One&lt;br&gt;
On both sides of the relationship the columns need to have unique values. A more accurate name would be "zero-or-one"-to-"zero-or-one" relationship because the presence of a row in one table does not imply the presence of a corresponding row in the other table.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Many-to-Many&lt;br&gt;
On both sides of the relationship the columns can have duplicates.&lt;br&gt;
These occur when neither table has unique values, or when you are trying to directly connect two fact tables.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;2.&lt;u&gt;Active vs Inactive relationships&lt;/u&gt;&lt;br&gt;
&lt;em&gt;Active&lt;/em&gt;: Represented by a solid line; used automatically by Power BI visuals.&lt;br&gt;
&lt;em&gt;Inactive&lt;/em&gt;: Represented by a dashed line ; ignored by default unless explicitly invoked.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Different Schemas&lt;/strong&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;u&gt;Star Schema&lt;/u&gt;
It is a straightforward and commonly used data modeling approach in Power BI.
It consists of a central fact table connected to multiple dimension tables, forming a star-like structure. 
Advantages are:&lt;/li&gt;
&lt;/ol&gt;

&lt;ul&gt;
&lt;li&gt;Simplicity&lt;/li&gt;
&lt;li&gt;Query Performance&lt;/li&gt;
&lt;li&gt;User-Friendly&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;2.&lt;u&gt;Snowflake Schema&lt;/u&gt; &lt;br&gt;
It is an extension of the star schema, where dimension tables are further normalised into multiple related tables, forming a snowflake-like structure.&lt;br&gt;
Advantages are:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Reduced Redundancy&lt;/li&gt;
&lt;li&gt;Scalability &lt;/li&gt;
&lt;li&gt;Detailed data organization. &lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>beginners</category>
      <category>data</category>
      <category>database</category>
      <category>sql</category>
    </item>
    <item>
      <title>How Excel is Used in Real-World Data Analysis</title>
      <dc:creator>Pepsy-11y</dc:creator>
      <pubDate>Sun, 07 Jun 2026 12:55:23 +0000</pubDate>
      <link>https://dev.to/pepsy11y/how-excel-is-used-in-real-world-data-analysis-4ddk</link>
      <guid>https://dev.to/pepsy11y/how-excel-is-used-in-real-world-data-analysis-4ddk</guid>
      <description>&lt;p&gt;&lt;strong&gt;Excel&lt;/strong&gt; is a spreadsheet software that allows you to collect, organize, analyze, calculate and visualize data efficiently. It is basically a table consisting of rows and columns. Rows are a horizontal group of cells whereas columns are a vertical group of cells.&lt;br&gt;
A cell is an individual block within a table which you can enter values such as words or numbers.&lt;/p&gt;

&lt;p&gt;&lt;u&gt;Excel data analysis&lt;/u&gt; involves taking raw datasets and transforming them into actionable insights. It empowers users to clean, summarize and visualize trends without needing advanced programming skills.&lt;br&gt;
Excel is a go-to software for professionals across industries.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Ways Excel is Used in Real World Data Analysis&lt;/strong&gt;&lt;br&gt;
1.&lt;u&gt; Financial Analysis&lt;/u&gt;-Banking and finance professionals use Excel for budgeting, forecasting, risk analysis and investment tracking.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;&lt;u&gt;Marketing Analysis&lt;/u&gt;-Marketers use Excel to track and analyze campaign performance, customer segmentation and ROI calculations.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;u&gt;Supply Chain and Inventory Management&lt;/u&gt;-Excel is widely used for inventory tracking, demand forecasting and supply chain optimization.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;** Excel Features and Formulas**&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;u&gt;Formulas&lt;/u&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;a. VLOOKUP-This function searches vertically the first/leftmost column of a table until a value that matches or exceeds the one you are looking up is found.&lt;/p&gt;

&lt;p&gt;Syntax is:&lt;br&gt;
           =VLOOKUP(lookup_value,table_array,col_index_num,[range_lookup]).&lt;/p&gt;

&lt;p&gt;b. HLOOKUP-This function stands for horizontal lookup. It searches for a value horizontally in the first row of a table and returns a value from the same column in a row you specify.&lt;/p&gt;

&lt;p&gt;Syntax is:&lt;br&gt;
         =HLOOKUP(lookup_value,table_array,row_index_num,[range_lookup]). &lt;/p&gt;

&lt;p&gt;c. IF-The IF function is often used when you want to sort your data according to a given logic.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;u&gt;Pivot Tables&lt;/u&gt; &lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;A pivot table is an interactive way to quickly summarize large amounts of data, to analyze numerical data in detail and to answer unanticipated questions. &lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;u&gt;Sorting and Filtering&lt;/u&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Sorting allows for alphabetic, numeric, colour and even multi-level organization.&lt;br&gt;
Filtering allows data to be limited to only display data which meets the criteria of the filter.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Conclusion&lt;/strong&gt;&lt;br&gt;
Excel has become an essential tool by creating financial models, helping businesses in making informed decisions, improving operational efficiency and optimizing workforce strategies throughout various sectors.&lt;/p&gt;

</description>
    </item>
  </channel>
</rss>
