<?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: Collins Sigei</title>
    <description>The latest articles on DEV Community by Collins Sigei (@sigei).</description>
    <link>https://dev.to/sigei</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%2F4071748%2F03765e5b-e07d-4f53-84c3-0856de8c68f5.png</url>
      <title>DEV Community: Collins Sigei</title>
      <link>https://dev.to/sigei</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/sigei"/>
    <language>en</language>
    <item>
      <title>Git workflow</title>
      <dc:creator>Collins Sigei</dc:creator>
      <pubDate>Sun, 30 Aug 2026 11:53:15 +0000</pubDate>
      <link>https://dev.to/sigei/git-workflow-17ge</link>
      <guid>https://dev.to/sigei/git-workflow-17ge</guid>
      <description>&lt;h1&gt;
  
  
  Git workflow: Working Directory, Staging, Commit and Push
&lt;/h1&gt;

&lt;p&gt;This will demonstrate how to create folders, files, and pushing a data set to Github using Git. &lt;br&gt;
Our data set is: Car Imports Analysis. &lt;/p&gt;

&lt;p&gt;Create a folder in desktop&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;Barta@DESKTOP-I97ED39 MINGW64 /c/One Drive/onedrive/desktop
&lt;span class="nv"&gt;$ &lt;/span&gt;&lt;span class="nb"&gt;mkdir &lt;/span&gt;Car-Imports-Analysis
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Create a data folder inside Car-Imports-Analysis&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;Barta@DESKTOP-I97ED39 MINGW64 /c/One Drive/onedrive/desktop/Car-Imports-Analysis
&lt;span class="nv"&gt;$ &lt;/span&gt;&lt;span class="nb"&gt;mkdir &lt;/span&gt;data
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Create a file inside Car-Imports-Analysis&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;Barta@DESKTOP-I97ED39 MINGW64 /c/One Drive/onedrive/desktop/Car-Imports-Analysis
&lt;span class="nv"&gt;$ &lt;/span&gt;&lt;span class="nb"&gt;touch &lt;/span&gt;README.md
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Add content to README.md file&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;Barta@DESKTOP-I97ED39 MINGW64 /c/One Drive/onedrive/desktop/Car-Imports-Analysis
&lt;span class="nv"&gt;$ &lt;/span&gt;&lt;span class="nb"&gt;echo&lt;/span&gt; &lt;span class="s2"&gt;"#Car-Imports-Analysis"&lt;/span&gt; &lt;span class="o"&gt;&amp;gt;&lt;/span&gt;README.md

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Used Nano terminal text editor to write the texts and display in README.md file. &lt;/p&gt;

&lt;p&gt;&lt;code&gt;Barta@DESKTOP-I97ED39 MINGW64 /c/One Drive/onedrive/desktop/Car-Imports-Analysis&lt;br&gt;
$ nano README.md&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;&lt;code&gt;Barta@DESKTOP-I97ED39 MINGW64 /c/One Drive/onedrive/desktop/Car-Imports-Analysis&lt;br&gt;
$ nano README.md&lt;/code&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="sb"&gt;`&lt;/span&gt;Barta@DESKTOP-I97ED39 MINGW64 /c/One Drive/onedrive/desktop/Car-Imports-Analysis
&lt;span class="nv"&gt;$ &lt;/span&gt;nano README.md&lt;span class="sb"&gt;`&lt;/span&gt;

Barta@DESKTOP-I97ED39 MINGW64 /c/One Drive/onedrive/desktop/Car-Imports-Analysis
&lt;span class="nv"&gt;$ &lt;/span&gt;&lt;span class="nb"&gt;cat &lt;/span&gt;README.md
&lt;span class="c"&gt;#Car-Imports-Analysis&lt;/span&gt;
&lt;span class="c"&gt;##Project Overview&lt;/span&gt;
This project analyses the Car Imports data records &lt;span class="k"&gt;for &lt;/span&gt;different car models &lt;span class="k"&gt;in &lt;/span&gt;the respective years
&lt;span class="c"&gt;##Tools Used&lt;/span&gt;
- Microsoft Excel
- Github
- Git
- Power Bi

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Initialize the project with Git using git init:&lt;br&gt;
&lt;code&gt;Barta@DESKTOP-I97ED39 MINGW64 /c/One Drive/onedrive/desktop/Car-Imports-Analysis&lt;br&gt;
$ git init&lt;br&gt;
Initialized empty Git repository in C:/One Drive/OneDrive/Desktop/Car-Imports-Analysis/.git/&lt;br&gt;
&lt;/code&gt;&lt;br&gt;
Connecting the local project 'Car Imports Analysis' to Github using SSH key:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;
Barta@DESKTOP-I97ED39 MINGW64 /c/One Drive/onedrive/desktop/Car-Imports-Analysis &lt;span class="o"&gt;(&lt;/span&gt;main&lt;span class="o"&gt;)&lt;/span&gt;
&lt;span class="nv"&gt;$ &lt;/span&gt;git remote add origin git@github.com:Collins-Sigei/Car-Import-Analysis-.git

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  The following are the steps towards pushing the project to Github:
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Staging the project:
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;Barta@DESKTOP-I97ED39 MINGW64 /c/One Drive/onedrive/desktop/Car-Imports-Analysis &lt;span class="o"&gt;(&lt;/span&gt;main&lt;span class="o"&gt;)&lt;/span&gt;
&lt;span class="nv"&gt;$ &lt;/span&gt;git add &lt;span class="nb"&gt;.&lt;/span&gt;
warning: &lt;span class="k"&gt;in &lt;/span&gt;the working copy of &lt;span class="s1"&gt;'data/Car Imports Data Records.csv'&lt;/span&gt;, LF will be replaced by CRLF the
 next &lt;span class="nb"&gt;time &lt;/span&gt;Git touches it

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;Commit &lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;code&gt;Barta@DESKTOP-I97ED39 MINGW64 /c/One Drive/onedrive/desktop/Car-Imports-Analysis (main)&lt;br&gt;
$ git commit -m "Add Car Imports Analaysis Records Project"&lt;br&gt;
[main (root-commit) 9a2d029] Add Car Imports Analaysis Records Project&lt;br&gt;
 2 files changed, 1009 insertions(+)&lt;br&gt;
 create mode 100644 README.md&lt;br&gt;
 create mode 100644 data/Car Imports Data Records.csv&lt;/code&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Select and copy the SSH key from Github to gitbash&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Connect local project to github&lt;br&gt;
&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;Barta@DESKTOP-I97ED39 MINGW64 /c/One Drive/onedrive/desktop/Car-Imports-Analysis &lt;span class="o"&gt;(&lt;/span&gt;main&lt;span class="o"&gt;)&lt;/span&gt;
&lt;span class="nv"&gt;$ &lt;/span&gt;git remote add origin git@github.com:Collins-Sigei/Car-Import-Analysis-.git
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;Push the project to Github
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;Barta@DESKTOP-I97ED39 MINGW64 /c/One Drive/onedrive/desktop/Car-Imports-Analysis &lt;span class="o"&gt;(&lt;/span&gt;main&lt;span class="o"&gt;)&lt;/span&gt;
&lt;span class="nv"&gt;$ &lt;/span&gt;git push &lt;span class="nt"&gt;-u&lt;/span&gt; origin main
Enter passphrase &lt;span class="k"&gt;for &lt;/span&gt;key &lt;span class="s1"&gt;'C:\Users\Barta/.ssh/id_ed25519'&lt;/span&gt;:
Enumerating objects: 5, &lt;span class="k"&gt;done&lt;/span&gt;&lt;span class="nb"&gt;.&lt;/span&gt;
Counting objects: 100% &lt;span class="o"&gt;(&lt;/span&gt;5/5&lt;span class="o"&gt;)&lt;/span&gt;, &lt;span class="k"&gt;done&lt;/span&gt;&lt;span class="nb"&gt;.&lt;/span&gt;
Delta compression using up to 4 threads
Compressing objects: 100% &lt;span class="o"&gt;(&lt;/span&gt;5/5&lt;span class="o"&gt;)&lt;/span&gt;, &lt;span class="k"&gt;done&lt;/span&gt;&lt;span class="nb"&gt;.&lt;/span&gt;
Writing objects: 100% &lt;span class="o"&gt;(&lt;/span&gt;5/5&lt;span class="o"&gt;)&lt;/span&gt;, 48.25 KiB | 345.00 KiB/s, &lt;span class="k"&gt;done&lt;/span&gt;&lt;span class="nb"&gt;.&lt;/span&gt;
Total 5 &lt;span class="o"&gt;(&lt;/span&gt;delta 0&lt;span class="o"&gt;)&lt;/span&gt;, reused 0 &lt;span class="o"&gt;(&lt;/span&gt;delta 0&lt;span class="o"&gt;)&lt;/span&gt;, pack-reused 0 &lt;span class="o"&gt;(&lt;/span&gt;from 0&lt;span class="o"&gt;)&lt;/span&gt;
To github.com:Collins-Sigei/Car-Import-Analysis-.git
 &lt;span class="k"&gt;*&lt;/span&gt; &lt;span class="o"&gt;[&lt;/span&gt;new branch]      main -&amp;gt; main
branch &lt;span class="s1"&gt;'main'&lt;/span&gt; &lt;span class="nb"&gt;set &lt;/span&gt;up to track &lt;span class="s1"&gt;'origin/main'&lt;/span&gt;&lt;span class="nb"&gt;.&lt;/span&gt;

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
      <category>beginners</category>
      <category>git</category>
      <category>github</category>
      <category>tutorial</category>
    </item>
    <item>
      <title>Getting Started with Excel for Data Analytics: From Basics to Data Cleaning</title>
      <dc:creator>Collins Sigei</dc:creator>
      <pubDate>Sun, 30 Aug 2026 11:27:22 +0000</pubDate>
      <link>https://dev.to/sigei/getting-started-with-excel-for-data-analytics-from-basics-to-data-cleaning-2c1c</link>
      <guid>https://dev.to/sigei/getting-started-with-excel-for-data-analytics-from-basics-to-data-cleaning-2c1c</guid>
      <description>&lt;h1&gt;
  
  
  Microsoft Excel
&lt;/h1&gt;

&lt;p&gt;Microsoft Excel is a spreadsheet program used to calculate data, organize information, and perform detailed analysis. It structures data into rows and columns, allowing users to perform mathematical operations and create charts.&lt;/p&gt;

&lt;h2&gt;
  
  
  Excel User Interface
&lt;/h2&gt;

&lt;p&gt;This entails the parts that the user interacts while using Microsoft Excel. &lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Ribbon - A large panel near the top holding tools categorized across tabs like Home, Insert, Page Layout, and Formulas.&lt;/li&gt;
&lt;li&gt;Quick access toolbar - A small, customizable toolbar at the very top-left corner that holds frequent commands like Save, Undo, and Redo.&lt;/li&gt;
&lt;li&gt;Name box - Located to the left of the formula bar, it displays the cell reference or address of your currently active cell (e.g., A1).&lt;/li&gt;
&lt;li&gt;Formula Bar - A long input bar next to the name box used to type, view, and edit data or formulas inside active cells&lt;/li&gt;
&lt;li&gt;Column Bar - The horizontal gray bar running across the top of the worksheet grid that displays letters (A, B, C, etc.) to identify each vertical column&lt;/li&gt;
&lt;li&gt;Worksheet tab - A small clickable label at the bottom of the Excel window that represents an individual sheet inside your workbook.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fhm6y5nr5f5cbzgsku3fn.webp" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fhm6y5nr5f5cbzgsku3fn.webp" alt="Excel user interface" width="800" height="423"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Data Formatting in Excel
&lt;/h2&gt;

&lt;p&gt;Changing visual presentation of data without altering its actual values.&lt;/p&gt;

&lt;h3&gt;
  
  
  Number Formatting
&lt;/h3&gt;

&lt;p&gt;This involves changing the how the value looks in a cell without altering the actual value stored in the cell. &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Select the &lt;strong&gt;Home&lt;/strong&gt; tab&lt;/li&gt;
&lt;li&gt;Go to the &lt;strong&gt;Number&lt;/strong&gt; ribbon&lt;/li&gt;
&lt;li&gt;Select from the dropdown options the appropriate format to apply to the data set.&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%2Fn6ifnz6odhtmaisebfvb.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%2Fn6ifnz6odhtmaisebfvb.png" alt="Number Format" width="800" height="295"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Data Sorting
&lt;/h2&gt;

&lt;p&gt;This is arranging the data set in a particular order, either from largest to smallest in numeric values and from A to Z in text form. &lt;/p&gt;

&lt;h2&gt;
  
  
  Data Filtering
&lt;/h2&gt;

&lt;p&gt;This allows specific data to be isolated from a large dataset&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Click any single cell inside a dataset&lt;/li&gt;
&lt;li&gt;On the data tab, in the sort and filter section, select filter&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Freezing Panes
&lt;/h2&gt;

&lt;p&gt;This allows the selected column and row to be visible when scrolling through a large dataset. &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Go to the view tab&lt;/li&gt;
&lt;li&gt;Select the row and/or column that should be visible &lt;/li&gt;
&lt;li&gt;Head to windows ribbon under the view tab and click on freeze panes &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%2Fykiqai13go35w91argbr.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%2Fykiqai13go35w91argbr.png" alt="Freeze panes" width="800" height="203"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Data Cleaning
&lt;/h2&gt;

&lt;p&gt;Process of ensuring that the data does not not have incorrect information, duplicates, inconsistencies and errors. &lt;/p&gt;

&lt;h3&gt;
  
  
  Step 1. Remove Duplicates
&lt;/h3&gt;

&lt;p&gt;Expunge the repeated data from the dataset&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Select the whole dataset through &lt;code&gt;ctrl+A&lt;/code&gt; &lt;/li&gt;
&lt;li&gt;Go to the Data tab&lt;/li&gt;
&lt;li&gt;Under data tools ribbon, select remove duplicates&lt;/li&gt;
&lt;li&gt;Check the box "My data has headers" and press Ok&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%2F4ytn7hqnsf0d1snesed2.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%2F4ytn7hqnsf0d1snesed2.png" alt="Duplicates" width="799" height="437"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Step 2. Formatting
&lt;/h3&gt;

&lt;p&gt;Ensure the respective columns have the correct  format type, that is numerical and text formatting to align with the values in that column.&lt;/p&gt;

&lt;h3&gt;
  
  
  Step 3. Find and Replace
&lt;/h3&gt;

&lt;p&gt;Use this to remove inconsistencies in each column&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Select the specific column and click &lt;code&gt;ctrl+H&lt;/code&gt; &lt;/li&gt;
&lt;li&gt;Input the category that is duplicated and replace with one term to refer the selected category&lt;/li&gt;
&lt;li&gt;Replicate the process in the other columns &lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Step 4. Remove Blanks
&lt;/h3&gt;

&lt;p&gt;Utilizing the find and replace method, remove the blanks from each column and replace with either 'unknown' or 'not provided'&lt;/p&gt;

&lt;h2&gt;
  
  
  Text Functions
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;code&gt;=UPPER()&lt;/code&gt; Converts the text to uppercase &lt;/li&gt;
&lt;li&gt;
&lt;code&gt;=LOWER()&lt;/code&gt;Converts the text to lowercase&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;=PROPER()&lt;/code&gt; Capitalizes the first letter of each word and makes the rest lowercase&lt;/li&gt;
&lt;/ol&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%2F8mn1haqugb559cxg5pj5.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%2F8mn1haqugb559cxg5pj5.png" alt="Text Function" width="410" height="227"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Aggregate Functions
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;code&gt;=SUM()&lt;/code&gt; Adds all numbers in a range together &lt;/li&gt;
&lt;li&gt;
&lt;code&gt;=AVERAGE()&lt;/code&gt; Calculate the mean of a range &lt;/li&gt;
&lt;li&gt;
&lt;code&gt;=MEDIAN ()&lt;/code&gt; Finds the number that appears in the middle when arranged in a particular order &lt;/li&gt;
&lt;li&gt;
&lt;code&gt;=MODE()&lt;/code&gt;Find the most repeated value in an ordered set &lt;/li&gt;
&lt;li&gt;
&lt;code&gt;=MAX()&lt;/code&gt; Finds the highest value in a data set&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;=MIN()&lt;/code&gt; Finds the lowest value in a data set&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  Date Functions
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;code&gt;=Today()&lt;/code&gt; Returns the current date &lt;/li&gt;
&lt;li&gt;
&lt;code&gt;=Now()&lt;/code&gt; Returns both the current date and time &lt;/li&gt;
&lt;li&gt;
&lt;code&gt;=Year()&lt;/code&gt;Extracts the year from a given date &lt;/li&gt;
&lt;li&gt;
&lt;code&gt;=Month()&lt;/code&gt; Extracts the month from a given date &lt;/li&gt;
&lt;li&gt;
&lt;code&gt;=Day()&lt;/code&gt; Extracts the day from a given date &lt;/li&gt;
&lt;li&gt;
&lt;code&gt;=Datedif()&lt;/code&gt; Calculates the difference between two dates &lt;/li&gt;
&lt;/ol&gt;

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