<?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: susan-nm</title>
    <description>The latest articles on Forem by susan-nm (@susannm).</description>
    <link>https://forem.com/susannm</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%2F3825414%2F04c966d1-1054-47a2-b246-de293f1ba94f.png</url>
      <title>Forem: susan-nm</title>
      <link>https://forem.com/susannm</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/susannm"/>
    <language>en</language>
    <item>
      <title>HOW MY JOURNEY HAS BEEN INTO UNDERSTANDING SQL.</title>
      <dc:creator>susan-nm</dc:creator>
      <pubDate>Mon, 20 Apr 2026 11:53:52 +0000</pubDate>
      <link>https://forem.com/susannm/how-my-journey-has-been-into-understanding-sql-4mh</link>
      <guid>https://forem.com/susannm/how-my-journey-has-been-into-understanding-sql-4mh</guid>
      <description>&lt;h2&gt;
  
  
  INTRODUCTION
&lt;/h2&gt;

&lt;p&gt;The first week on the introduction of SQL, honestly i was lost, the topic seems simple but trying to connect on how MAIN WORDS are used was not that simple. It was my first time hearing the word SQL but since am always eager to learn new things i knew it will not be a big issue.&lt;/p&gt;

&lt;p&gt;After the introduction, i was able to recognize words  such as SELECT,FROM,WHERE whereby these words help us solve real-life problems. An example on how the above commands are used. I will use SELECT.&lt;/p&gt;

&lt;p&gt;In SQL, SELECT is a command used to retrieve data from a database.&lt;br&gt;
select * from books;&lt;/p&gt;

&lt;p&gt;SELECT means get all columns&lt;br&gt;
FROM books means from the books table&lt;/p&gt;

&lt;p&gt;SELECT * FROM books;&lt;br&gt;
means: Show me everything inside the books dataset.&lt;/p&gt;

&lt;h2&gt;
  
  
  THEN I ENCOUNTERED JOINs.
&lt;/h2&gt;

&lt;p&gt;I would read explanations, watch tutorials, and even try examples  but nothing clicked. It felt like trying to solve a puzzle without seeing the full picture. I didn’t understand how tables related to each other, so combining them felt like guesswork.&lt;/p&gt;

&lt;h2&gt;
  
  
  WINDOW FUNCTIONS WERE EVEN WORSE.
&lt;/h2&gt;

&lt;p&gt;I remember thinking,Why not just use GROUP BY for everything? It seemed easier, familiar, and safe. Window functions looked complicated, unnecessary, and honestly intimidating.&lt;/p&gt;

&lt;p&gt;And those SQL functions every beginner should know&lt;br&gt;
They were not easy.&lt;/p&gt;

&lt;p&gt;The Turning Point: Slowing Down&lt;/p&gt;

&lt;p&gt;What changed everything wasn’t a new tutorial or a magic explanation.&lt;/p&gt;

&lt;p&gt;It was slowing down.&lt;br&gt;
Instead of trying to understand everything at once, I started breaking things into small pieces:&lt;/p&gt;

&lt;p&gt;I focused on one JOIN at a time&lt;br&gt;
I used simple datasets — nothing complex&lt;br&gt;
I asked myself why each query worked, not just how&lt;/p&gt;

&lt;p&gt;One day, something clicked.&lt;/p&gt;

&lt;p&gt;JOINs stopped being abstract. I began to see them as conversations between tables — each one contributing its own piece of information. Instead of confusion, I started seeing patterns. When Things Started Making Sense. The moment I understood JOINs, everything else became easier.&lt;/p&gt;

&lt;p&gt;Window functions? They suddenly felt powerful instead of scary. I realized they weren’t replacing GROUP BY — they were solving a different problem. GROUP BY summarizes data, but window functions let you keep the details and analyze them at the same time.&lt;/p&gt;

&lt;p&gt;That was a game changer.&lt;/p&gt;

&lt;p&gt;And those basic SQL functions I once struggled with? They became tools I could confidently use — not things I had to memorize blindly.&lt;/p&gt;

&lt;h2&gt;
  
  
  RIGHT NOW
&lt;/h2&gt;

&lt;p&gt;I won’t say I know everything BUT am somewhere, am no longer stuck, because i can write queries and actually understand what they’re doing. I can debug my own mistakes. I can explore data without feeling overwhelmed. Most importantly, I’m not afraid of SQL anymore.&lt;/p&gt;

&lt;h2&gt;
  
  
  LESSONS LEARNT.
&lt;/h2&gt;

&lt;p&gt;If there’s one thing this journey taught me,&lt;br&gt;
I don't need to understand everything at once.&lt;br&gt;
At times i feel confused, but i know am learning.&lt;/p&gt;

&lt;p&gt;I will take every concept at a time. practice, and be patient with myself. because one day things will flow like a pro, and when they do i will realize how far I have come from.&lt;/p&gt;

&lt;h2&gt;
  
  
  CONCLUSION
&lt;/h2&gt;

&lt;p&gt;Those topics/ parts that makes me get confused, they are my foundation and i know that i am just getting started.&lt;/p&gt;

</description>
      <category>beginners</category>
      <category>codenewbie</category>
      <category>database</category>
      <category>sql</category>
    </item>
    <item>
      <title>USE OF EXCEL IN REAL WORLD DATA ANALYSIS.</title>
      <dc:creator>susan-nm</dc:creator>
      <pubDate>Sat, 04 Apr 2026 10:52:29 +0000</pubDate>
      <link>https://forem.com/susannm/use-of-excel-in-real-world-data-analysis-4kh7</link>
      <guid>https://forem.com/susannm/use-of-excel-in-real-world-data-analysis-4kh7</guid>
      <description>&lt;h2&gt;
  
  
  INTRODUCTION
&lt;/h2&gt;

&lt;p&gt;In the world today, organizations depends on their data to make decisions. From businesses to schools and financial institutions In Financial institutions, schools and businesses, for them to understand trends and how they are performing data is very essential. The above organizations use a tool known as Microsoft Excel to handle and analyze their data. Since its simple and has features which are powerful it is the best tool to do data analysis for professional and beginners.&lt;/p&gt;

&lt;h2&gt;
  
  
  EXCEL
&lt;/h2&gt;

&lt;p&gt;Excel is a program that has spreadsheet that we use to organize,  analyze, calculate data. in the spreadsheet we have columns, rows, sheets and cell that helps us analyze and organize our work. Almost all businesses and organizations both small and large use excel to do analysis, calculations and forecasting.&lt;/p&gt;

&lt;p&gt;Excel as a tool performs tasks such as;&lt;br&gt;
. Data entry -We stores data and information in columns and rows which makes it easier to trace, access and update. As shown below.&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%2Fbi4kmqg5h2xkjep6iwe8.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%2Fbi4kmqg5h2xkjep6iwe8.png" alt="column and row.png" width="369" height="168"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;. Book keeping and accounting - using formulars and templates its easier to calculate expenses and income of our business.&lt;br&gt;
. Visualization and chart creation - we are able to transform raw data into meaningful visual data insight.&lt;br&gt;
.Functions to do advanced calculations - Built in formulas such as SUM,AVERAGE, MIN, XLOOKUP helps in analyzing values.&lt;br&gt;
below is an image with SUM Formula&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%2F31jw9igv0eakibfc1xsy.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%2F31jw9igv0eakibfc1xsy.png" alt="column and Row.png" width="800" height="534"&gt;&lt;/a&gt;&lt;br&gt;
. Pivot tables -its easier to manage big dataset using pivot tables. A good example Jumia dataset.&lt;/p&gt;

&lt;p&gt;Data Analysis&lt;/p&gt;

&lt;p&gt;Excel is a powerful tool for analyzing datasets. It allows users to clean data, identify patterns, and draw meaningful insights that support decision-making.&lt;/p&gt;

&lt;p&gt;Key Excel Features and Formulas&lt;br&gt;
Pivot Tables&lt;/p&gt;

&lt;p&gt;Pivot tables are one of Excel’s most powerful features. They allow users to summarize large datasets quickly. For example, a pivot table can show total sales by product or region without manually calculating each value.&lt;/p&gt;

&lt;p&gt;Sorting and Filtering&lt;/p&gt;

&lt;p&gt;Sorting helps arrange data in order, such as from largest to smallest values. Filtering allows users to display only specific data, making it easier to focus on relevant information.&lt;/p&gt;

&lt;p&gt;Common Formulas&lt;/p&gt;

&lt;p&gt;SUM Function&lt;br&gt;
Used to add values in a range.&lt;br&gt;
Example:&lt;br&gt;
=SUM(A1:A10)&lt;/p&gt;

&lt;p&gt;AVERAGE Function&lt;br&gt;
Calculates the average of a set of numbers.&lt;br&gt;
Example:&lt;br&gt;
=AVERAGE(A1:A10)&lt;/p&gt;

&lt;p&gt;IF Function&lt;br&gt;
Used to make logical decisions.&lt;br&gt;
Example:&lt;br&gt;
=IF(A1&amp;gt;50, "Pass", "Fail")&lt;/p&gt;

&lt;p&gt;VLOOKUP / XLOOKUP&lt;br&gt;
Used to search for data in a table and return corresponding values. This is useful when working with large datasets.&lt;/p&gt;

&lt;p&gt;Real Example Scenario&lt;/p&gt;

&lt;p&gt;For instance, when analyzing a dataset of products, Excel can be used to study the relationship between discount percentages and the number of customer reviews. By using pivot tables and charts, businesses can determine whether higher discounts lead to increased customer engagement. Similarly, Excel can help identify whether higher-rated products receive more reviews, enabling companies to improve their strategies.&lt;/p&gt;

&lt;p&gt;Benefits of Using Excel&lt;/p&gt;

&lt;p&gt;Excel offers several advantages in data analysis:&lt;/p&gt;

&lt;p&gt;It is easy to learn and use&lt;br&gt;
It is widely available and used globally&lt;br&gt;
It provides powerful tools for data analysis&lt;br&gt;
It does not require programming knowledge&lt;br&gt;
It supports data visualization through charts and graphs&lt;br&gt;
Personal Reflection. This graph below cleary shows discounts percentages and customers reviews&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%2Fmht8479fhoyiqmb9748w.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%2Fmht8479fhoyiqmb9748w.png" alt="column chart" width="753" height="508"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Learning Excel has helped me analyze and interpret data. I can now organize large datasets, apply formulas, and generate insights that were previously difficult to identify.I now understand how data can be transformed into meaningful information that supports decision-making.&lt;/p&gt;

&lt;h1&gt;
  
  
  CONCLUSION
&lt;/h1&gt;

&lt;p&gt;Microsoft Excel is an essential tool in real-world data analysis. Its ability to organize, analyze, and visualize data makes it valuable across various fields such as business, finance, and education. As data continues to play a significant role in decision-making, mastering Excel is an important skill that can open many opportunities in today’s digital world.&lt;/p&gt;

</description>
      <category>beginners</category>
      <category>learning</category>
      <category>datascience</category>
    </item>
  </channel>
</rss>
