<?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: OGUNDIMU ABIODUN RUKAYAT</title>
    <description>The latest articles on DEV Community by OGUNDIMU ABIODUN RUKAYAT (@arukky).</description>
    <link>https://dev.to/arukky</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%2F1350261%2Fd8d1abb1-5eab-46dc-a47c-d98c0d0530fd.jpg</url>
      <title>DEV Community: OGUNDIMU ABIODUN RUKAYAT</title>
      <link>https://dev.to/arukky</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/arukky"/>
    <language>en</language>
    <item>
      <title>USING BASIC FUNTIONS AND FORMULARS IN MICROSOFT EXCEL</title>
      <dc:creator>OGUNDIMU ABIODUN RUKAYAT</dc:creator>
      <pubDate>Sun, 24 Mar 2024 20:27:27 +0000</pubDate>
      <link>https://dev.to/arukky/using-basic-funtions-and-formulars-in-microsoft-excel-2g9n</link>
      <guid>https://dev.to/arukky/using-basic-funtions-and-formulars-in-microsoft-excel-2g9n</guid>
      <description>&lt;p&gt;(A STEP BY STEP GUIDE ON THE BASIC MICROSOFT EXCEL FUNCTIONS AND THEIR FORMULAR AND THEIR APPLICATIONS IN DATA ANALYSIS)&lt;/p&gt;

&lt;p&gt;Every data analysis must know how to use the functions and formulars in Microsoft Excel. This is because they are very important when working with data, performing calculations, and solving data-relating problems. This guide will guide us on the basic functions like SUM, IF, IFS, AVERAGE and XLOOKUP, the best way to use them and how to solve problems with this functions.&lt;/p&gt;

&lt;p&gt;INTODUCTION TO MICROSFT EXCEL FORMULAS AND THEIR FUNCTIONS&lt;br&gt;
Generally, excel functions as software for processing numbers, but in details this software is also used to create, edit, sort, analyze and summarize data. In addition, Microsoft excel also functions to perform arithmetic and statistical calculations so that it can help in solving logical and math problems.&lt;/p&gt;

&lt;p&gt;SUM,IF, IFS, AVERAGE, VLOOKUP AND XLOOKUP&lt;/p&gt;

&lt;p&gt;SUM&lt;br&gt;
This sum function is also known as addition. The sum functions help users add the total of any selected range of cell values on Microsoft excel. The SUM functions add values. You can add individual values, cell references or ranges or a mix of all three. &lt;br&gt;
For example&lt;/p&gt;

&lt;h1&gt;
  
  
  =SUM(B2:B5) Adds the value in B2:B5
&lt;/h1&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fgw2hx4f3l4uxm56x33cp.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fgw2hx4f3l4uxm56x33cp.png" alt="Image description" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;using that formular, the total as seen above is 325&lt;/p&gt;

&lt;h1&gt;
  
  
  =SUM(B2:B5), (C2:C5) Adds the cells in cell B2:B5 as well as cell C2:C5
&lt;/h1&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fecer6gz2sc7qgflkcv87.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fecer6gz2sc7qgflkcv87.png" alt="Image description" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;using that formular, the total of both cell &lt;br&gt;
as seen above is 665&lt;/p&gt;

&lt;p&gt;IF FUNCTION&lt;br&gt;
The if function is one of the most popular function in excel, it allows you make logical comparisions between a value and what you expected.&lt;br&gt;
so if statement can have two results. the first result is if your comparision is true, and the second is if the comparision is false.&lt;br&gt;
For example&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fckfve2eqk6zte5oyvynp.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fckfve2eqk6zte5oyvynp.png" alt="Image description" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;using the excel function above to return "EXCELLENT" IF test score is greater than 75 and "GOOD" if it is not.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fzym2ye6cv9qrwkk57r5y.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fzym2ye6cv9qrwkk57r5y.png" alt="Image description" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;IFS FUNCTION&lt;br&gt;
the ifs function is use to check whether one or more conditions  are met and return a value that corresponds to the first TRUE condition.&lt;br&gt;
for example &lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fbj7517cpkqqoddrrvw1q.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fbj7517cpkqqoddrrvw1q.png" alt="Image description" width="446" height="241"&gt;&lt;/a&gt;&lt;br&gt;
 using the above function to return EXCELLENT IFS the test score os greater than 80.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fisacem57bl8kfqt3mt61.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fisacem57bl8kfqt3mt61.png" alt="Image description" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;XLOOKUP/VLOOKUP&lt;br&gt;
VLOOKUP forces the user to indicate the entire table array searching for the look up value exclusively in the leftmost column. the column to return a value from is determine by the column number in the subsequent argument. XLOOKUP, in contrast, allows the lookup and return columns to be specified seperately. Xlookup functions searches a range or an array, and then returns the item corresponding to the first match it finds. if no match exists then Xlookup can return the closest (approximate) match. if omitted Xlookup returns blanks cells it find in lookup-array.&lt;br&gt;
Vlookup has 4 argument while Xlookup has 6 argument.&lt;br&gt;
XLOOKUP FORMULAR&lt;br&gt;
Xlookup(lookup_value,lookup_array,return_array,[if_not_found],[match_mode],[search_mode]&lt;br&gt;
The first 3 arguments are required and the last three are optional. &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  lookup_value: it is the value to search for&lt;/li&gt;
&lt;li&gt;  lookup_array: The range or array where to search.&lt;/li&gt;
&lt;li&gt;  Return_array: The range or array from which to return values.&lt;/li&gt;
&lt;li&gt;  If_not_found {Optional}: The value of return if no match is found if omitted, an #N/A error is returned.&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Match_mode: The match type to perform:&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;0 or omitted (default)- exact match. If not found, an #N/A error is returned.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;-1 -exact match or next smaller. If an exact match is not found, the next smaller value is returned.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;1 -exact match or next large. if an exact match is not found, the next larger value is returned.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;2 -wildcard character match.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Search_mode {Optional}: the direction of search.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;1 or omitted(default) - To search from first to last.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;-1 - To search in reverse order, from last to first.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;2 - Binary search on data sorted ascending.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;-2 - Binary search on data sorted descending.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;EXAMPLE OF BASIC XLOOKUP&lt;br&gt;
where =XLOOKUP(D2,C2:C7,B2:B7)&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fps4hx8u28ucabrh4u01h.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fps4hx8u28ucabrh4u01h.png" alt="Image description" width="800" height="450"&gt;&lt;/a&gt;&lt;br&gt;
EXAMPLE OF HORIZONTAL XLOOK UP&lt;br&gt;
where =XLOOKUP(B5,B2:G2,B1:G1)&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fjy72uje7qndk1ggbun3u.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fjy72uje7qndk1ggbun3u.png" alt="Image description" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;EXAMPLE OF ACROSS SHEET XLOOKUP&lt;br&gt;
where the lookup array is taken from the basic lookup sheet&lt;br&gt;
=XLOOKUP(A2,'BASIC XLOOKP'!C2:C7,'BASIC XLOOKUP'!B2:B7)&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F7zcglnkiyvfxfnwadzop.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F7zcglnkiyvfxfnwadzop.png" alt="Image description" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;EXAMPLE OF XLOOKUP USING THE PRICE TABLE&lt;br&gt;
where the price and cost of chocolate chip =XLOOKUP(D2,C2:C7,A2:B7)&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F4mudvhzo0jn37fj5pdno.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F4mudvhzo0jn37fj5pdno.png" alt="Image description" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;EXAMPLE OF MULTIPLE XLOOKUP&lt;br&gt;
where =XLOOKUP(E2&amp;amp;F2,B2:B7&amp;amp;C2:C7,A2:A7)&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F5yqaaclsf3wuwswd2e27.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F5yqaaclsf3wuwswd2e27.png" alt="Image description" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;EXAMPLE OF XLOOKUP USING MATCH MODE&lt;br&gt;
where =XLOOKUP(D2,A2:A7,B2:b7,,-1)&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fdrz2873730icjz9piibi.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fdrz2873730icjz9piibi.png" alt="Image description" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;EXAMPLE OF XLOOKUP USING SEARCH MOOD&lt;br&gt;
where =XLOOKUP(D3,A1:A16,B1:B16,,,-1)&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fzbdspp68xege4rj8g8ti.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fzbdspp68xege4rj8g8ti.png" alt="Image description" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;EXAMPLE OF NESTED XLOOKUP&lt;br&gt;
where =XLOOKUP(B4,B8:D8,B9:D14)&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F7g4obih0sffoiij15v3w.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F7g4obih0sffoiij15v3w.png" alt="Image description" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;AVERAGE&lt;br&gt;
What is Average&lt;br&gt;
In everyday life, the average is a number expressing the typical value in a dataset of a data. In mathematical terms, the average is the middle or central value in a set of number, which is calculated by dividing the sum of all the values by their numbers. the function calculate the average of any choosen range of cells. &lt;/p&gt;

</description>
      <category>jafarscript</category>
      <category>marusoft</category>
      <category>datascience</category>
    </item>
  </channel>
</rss>
