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

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

Find Day Name from Date in Excel

Following are 4 different methods in Excel to find the ‘Day Name’ corresponding to a ‘Date’. 1. TEXT Function to find Day Name from Date The TEXT function in Excel can be used to return the corresponding Day Name, Month or Year from a Date. The following formula will return Tuesday, the Day name corresponding to the … Read more

Excel Formula to Convert Numbers to Words

Have you ever thought of an Excel formula that will convert Numbers to Words? i.e. A formula that can convert the number 456,571 into Four Hundred and Fifty Six Thousand Five Hundred and Seventy One. In this blog post, I am sharing two Excel formulas that can convert Numbers in Words. Pete M’s Formula =CHOOSE(LEFT(TEXT(A1,”000000000″))+1,,”One”,”Two”,”Three”,”Four”,”Five”,”Six”,”Seven”,”Eight”,”Nine”)&IF(–LEFT(TEXT(A1,”000000000″))=0,,IF(AND(–MID(TEXT(A1,”000000000″),2,1)=0,–MID(TEXT(A1,”000000000″),3,1)=0),” … Read more

Interpolation in Excel

You are given the X, Y Coordinates of 2 points, (99.5,39.5) and (201.1,45.7) and asked to find the Y coordinate of an intermediate point with an X coordinate of 115.7. How will you solve this problem? The answer is Interpolation! Interpolation is the method of estimating ‘unknown values’ that fall between ‘known values’. In this … Read more