Find Common Values between two lists in Excel

This Excel tutorial is about 3 different methods to find the common values between two Lists or Tables in Excel. Here we have 2 lists of World’s Billionaires, one from the year 2015 and other one from 2020. Following are different methods to find the Names that are present in both lists. MATCH function to … Read more

Different methods to find the Sum of first 50 Natural numbers

Following are 4 different methods to find the Sum of first 50 natural numbers using Excel. Formula using SUM and SEQUENCE function The following formula will return the sum of numbers from 1 to 50. =SUM(SEQUENCE(50,1,1,1)) For the sum of first 75 numbers, =SUM(SEQUENCE(75,1,1,1)) Formula using SUMPRODUCT and ROW function Formula that combines SUMPRODUCT and … Read more

Different methods to generate Random Values in Excel

Following are 4 different methods to generate random numbers in Excel RAND Function The RAND function in Excel can be used to generate a random number between 0 and 1. The RAND function is a volatile function and will update every when the worksheet is recalculated. RANDBETWEEN Function The RANDBETWEEN function returns a random number … Read more

Calculate Time difference and Total Hours worked in Excel

In this blog post, we will see how to calculate Time difference in Excel. The methods include calculating Time difference with Overnight schedules. Let’s say we have the ‘In Time’ and ‘Out Time’ of an Employee for a week. Following are the different methods to calculate the difference between the In and Out times. Simple … Read more

How to convert Numbers to Words in GoogleSheets

Till date, GoogleSheets doesn’t have any in-built function to convert Numbers to Words. But a developer, Alexander Ivanov has created a GoogleSheets add-on called NumberText which makes the above translation possible. When we install the above said Add-on, we get access to two Custom functions, NUMBERTEXT and MONEYTEXT. NUMBERTEXT will convert Numbers into Words of … Read more

What is 5 x 5 Rule in PowerPoint?

5 x 5 Rule of PowerPoint Each of your slide should have no more than 5 lines. Each of those lines should have no more than 5 words. An improved version of this rule, which is called ‘5 x 5 x 5 rule’ suggests ‘not to use more than 5 text heavy slides in a row’. Why … Read more

Shuffle Records in Excel

Let’s see how to shuffle the records of a dataset using the RAND, LARGE, ROWS and VLOOKUP functions in Excel. Step 1: Insert a column on the left side of the dataset and generate an array of random numbers in it. The RAND Function in Excel can be used for this purpose. =RAND() Step 2: … Read more