<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Data Analytics Tips]]></title><description><![CDATA[I am data analytics consultant and transform raw data into actionable insights. With a keen eye for patterns and trends, I uncover valuable information that drives data-driven decision-making.]]></description><link>https://syedwasi.hashnode.dev</link><image><url>https://cdn.hashnode.com/res/hashnode/image/upload/v1703764689869/DTsFkboqj.JPG</url><title>Data Analytics Tips</title><link>https://syedwasi.hashnode.dev</link></image><generator>RSS for Node</generator><lastBuildDate>Mon, 07 Sep 2026 22:11:50 GMT</lastBuildDate><atom:link href="https://syedwasi.hashnode.dev/rss.xml" rel="self" type="application/rss+xml"/><language><![CDATA[en]]></language><ttl>60</ttl><item><title><![CDATA[Add SumProduct to your Excel Arsenal.]]></title><description><![CDATA[SumProduct is one of the powerful excel formula that can take both horizontal and Vertical conditions to extract the data from given range
as like sumif and sumifs, sumproduct too, extract the data from a particular column. Syntax is below
\=SUMPRODU...]]></description><link>https://syedwasi.hashnode.dev/add-sumproduct-to-your-excel-arsenal</link><guid isPermaLink="true">https://syedwasi.hashnode.dev/add-sumproduct-to-your-excel-arsenal</guid><category><![CDATA[sumproduct]]></category><dc:creator><![CDATA[Wasi Miyan]]></dc:creator><pubDate>Wed, 27 Dec 2023 21:39:48 GMT</pubDate><enclosure url="https://cdn.hashnode.com/res/hashnode/image/upload/v1703764889718/e3e9c1f2-4def-4042-a735-64159d50a948.jpeg" length="0" type="image/jpeg"/><content:encoded><![CDATA[<p>SumProduct is one of the powerful excel formula that can take both horizontal and Vertical conditions to extract the data from given range</p>
<p>as like sumif and sumifs, sumproduct too, extract the data from a particular column. Syntax is below</p>
<p><strong>\=SUMPRODUCT(array1,[array2],[array3],…)</strong></p>
<p>The SUMPRODUCT function uses the following arguments:</p>
<ol>
<li><p><strong>Array1</strong> (required argument) – This is the first array or range that we wish to multiply and subsequently add.</p>
</li>
<li><p><strong>Array2, Array 3</strong> (optional argument) – This is the second (or third) array or range that we wish to multiply and subsequently add.</p>
</li>
</ol>
<p>Example</p>
<p>let say we have table range of a2:c10, where a column have fruit name, b column gave the rate per kg and c column have quantity. We need to calculate the total sale of each fruit so we can use sumproduct as below</p>
<p>\=sumproduct(b2:b10,c2,c10)</p>
<p>this will give the result in d2:d10 as the product of each cell of b2 till c10, i.e b2*c2, b3*c3 and so on.</p>
<p>We can use sumproduct to extract data from particular column based on multiple criteria</p>
<p>example</p>
<p>let say we have table range of a2:c10, where a column have fruit name, b column gave the rate per kg and c column have quantity. We need to calculate the total sale of each fruit so we can use sumproduct as below</p>
<p>let say we need to get the sum of rates of fruits whose sold quantity is more than 10 kg and rate is less than 50 . We know that quantity is there in column c and rate is there in column b</p>
<p>\=sumproduct(Table range,1*(b2:b10=50)*(c2:c10=10))</p>
<p>Sumproduct is power exccel formula.</p>
]]></content:encoded></item><item><title><![CDATA[Powerful Sumif and Sumifs Excel formulas]]></title><description><![CDATA[Sumifs
This formula works on numbers. If you want to fetch some numerical figures with respect to particular string content (example rate of particular book from a books rate sheet) from a particular column based on multiple criteria, you can use thi...]]></description><link>https://syedwasi.hashnode.dev/powerful-sumif-and-sumifs-excel-formulas</link><guid isPermaLink="true">https://syedwasi.hashnode.dev/powerful-sumif-and-sumifs-excel-formulas</guid><category><![CDATA[sumif]]></category><category><![CDATA[sumifs]]></category><dc:creator><![CDATA[Wasi Miyan]]></dc:creator><pubDate>Wed, 27 Dec 2023 21:03:41 GMT</pubDate><enclosure url="https://cdn.hashnode.com/res/hashnode/image/upload/v1703764995060/d152cc28-4e01-48cb-9a6b-39d5c0e3c207.jpeg" length="0" type="image/jpeg"/><content:encoded><![CDATA[<p>Sumifs</p>
<p>This formula works on numbers. If you want to fetch some numerical figures with respect to particular string content (example rate of particular book from a books rate sheet) from a particular column based on multiple criteria, you can use this formula.</p>
<p>Syntax itself says =Sumifs(sum range, criteria1 range, criteria1, criteria2 range, criteria2, criteria3 range, criteria3....)</p>
<p>sum range = range of numerical data that need sum up and to be provided</p>
<p>Cirteria Range= Range or Column where the condition/criteria can be found</p>
<p>Criteria= condition that need to be matched</p>
<p>example</p>
<p>From a table range, we need to get the rate of math, statistics and economics book which was published in 2023 and which is in English language.</p>
<p>Here, numerical data to be found is the rate or cost price(lets say this info is available in column d) of the book. Table range(let say a2:k100) is the table sheet in which all the information related to the books is available. There are two criteria.</p>
<ol>
<li><p>Book should be published in 2023(lets say this info is available in column i)</p>
</li>
<li><p>Book should be in English language.(lets say this info is available in column g)</p>
</li>
</ol>
<p>So formulae would be</p>
<p>\=sumifs(d2:d100,"Maths",i2:i100,"English",g2:g100)</p>
<p>This will give the rate of Maths book which is in English language and which is published in 2023</p>
<p>The Above formula will be useful for situation where multiple conditions are there(as one above of year and language), but when there is only one condition, we can use SUMIF function which have same syntax but with position interchange as below</p>
<p>Syntax</p>
<p>\=Sumif( criteria1 range, criteria1, sum range,)</p>
<p>sum range = range of numerical data that need sum up and to be provided</p>
<p>Criteria range= Cirteria Range= Range or Column where the condition/criteria can be found</p>
<p>Criteria= condition that need to be matched</p>
<p>SumIf and Sumifs are powerful functions that can be used to get numerical data. Please note that these formulas works only when you need to fetch out a particular figure/number from certain column based on required criteria/criteria's</p>
]]></content:encoded></item><item><title><![CDATA[Boost Your Productivity with Essential Excel Shortcuts]]></title><description><![CDATA[Introduction: Excel, the powerful spreadsheet software, offers a range of keyboard shortcuts that can significantly enhance your productivity. By mastering these shortcuts, you can navigate, format, edit, and work with data more efficiently. In this ...]]></description><link>https://syedwasi.hashnode.dev/boost-your-productivity-with-essential-excel-shortcuts</link><guid isPermaLink="true">https://syedwasi.hashnode.dev/boost-your-productivity-with-essential-excel-shortcuts</guid><category><![CDATA[excel]]></category><category><![CDATA[#Excel-tutorial]]></category><category><![CDATA[Excelize]]></category><category><![CDATA[Excel Assignment Help]]></category><dc:creator><![CDATA[Wasi Miyan]]></dc:creator><pubDate>Fri, 07 Jul 2023 02:28:21 GMT</pubDate><enclosure url="https://cdn.hashnode.com/res/hashnode/image/upload/v1688689344242/21a3cc9b-60d4-44c3-8873-5c381a7a6454.jpeg" length="0" type="image/jpeg"/><content:encoded><![CDATA[<p>Introduction: Excel, the powerful spreadsheet software, offers a range of keyboard shortcuts that can significantly enhance your productivity. By mastering these shortcuts, you can navigate, format, edit, and work with data more efficiently. In this article, we'll explore essential Excel shortcuts that will help you save time and streamline your workflow.</p>
<ol>
<li><ol>
<li>Navigating and Selecting Cells:</li>
</ol>
</li>
</ol>
<ul>
<li><p>Move to the next cell: Tab</p>
</li>
<li><p>Select an entire row: Shift + Spacebar</p>
</li>
<li><p>Select an entire column: Ctrl + Spacebar</p>
</li>
<li><p>Select the entire worksheet: Ctrl + A</p>
</li>
</ul>
<ol>
<li>Formatting Cells:</li>
</ol>
<ul>
<li><p>Apply bold formatting: Ctrl + B</p>
</li>
<li><p>Apply italic formatting: Ctrl + I</p>
</li>
<li><p>Open the Format Cells dialog box: Ctrl + 1</p>
</li>
</ul>
<ol>
<li>Editing and Manipulating Data:</li>
</ol>
<ul>
<li><p>Enter edit mode for the selected cell: F2</p>
</li>
<li><p>Delete the contents of a cell: Delete</p>
</li>
<li><p>Copy the contents of a cell: Ctrl + C</p>
</li>
<li><p>Paste the copied contents: Ctrl + V</p>
</li>
<li><p>Autofill down: Ctrl+ D</p>
</li>
<li><p>Autofill Right: Ctrl + R</p>
</li>
<li><p>Delete cell/Row/Column: Ctrl + -</p>
</li>
<li><p>Add cell/Row/Column: Ctrl + +</p>
</li>
</ul>
<ol>
<li>Working with Worksheets and Workbooks:</li>
</ol>
<ul>
<li><p>Insert a new worksheet: Shift + F11</p>
</li>
<li><p>Move to the next worksheet: Ctrl + Page Down</p>
</li>
<li><p>Move to the previous worksheet: Ctrl + Page Up</p>
</li>
<li><p>Switch between open workbooks: Ctrl + Tab</p>
</li>
</ul>
<ol>
<li>Formulas and Functions:</li>
</ol>
<ul>
<li><p>Insert a formula: = (equals sign)</p>
</li>
<li><p>AutoSum selected cells: Alt + =</p>
</li>
<li><p>Insert a function: Shift + F3</p>
</li>
</ul>
<p>    Conclusion: Mastering these essential Excel shortcuts empowers you to navigate, format, edit, and work with data more efficiently. Incorporate these time-saving techniques into your Excel workflow and unlock the full potential of this versatile spreadsheet software. Start implementing these shortcuts today to boost your productivity and accomplish more in less time.</p>
]]></content:encoded></item></channel></rss>