List of top 10 Excel formulas for people in IT - KING OF EXCEL

Thursday, July 23, 2020

List of top 10 Excel formulas for people in IT

List of top 10 Excel formulas for people in IT
Are you AND(“In IT”, “Use Excel”)? Then this article is for you. Here is my list of top 10 Excel formulas for people in IT. As software miners use Excel differently than other folks, this article highlights important use cases for you. These examples will particularly help project managers, IT analysts, testing people and business analysts. 
Don’t forget to download the example workbook.
top 10 excel formulas for IT people

Video - Top 10 Excel formulas for IT people

If you don’t want to read the article, watch this video for my recommended top 10 Excel formulas for IT people.
Click here to download the 10 Excel formulas workbook. Use the sample data and completed formulas to learn all of these. 
For most situations in these top 10 examples, I will be using the below two column dataset (named testing). This shows number of test cases completed on daily basis for the month of May 2020.
sample data - top10formulas-it-people

1. Count values between dates

Let’s say you want to count how many test cases were completed between dates 6-May-2020 and 16-May-2020.
You can use below formula:
=SUMIFS(testing[Test cases done],
testing[Date],”>=6-May-2020″,testing[Date],”<=16-May-2020″)
Know more about SUMIFS function.
To see all testcase data for the given date range in cells J4 & J5, you can use FILTER function.
=FILTER(testing, (testing[Date]>=J4)*(testing[Date]<=J5))
Know more about FILTER function.

2. Lookup a value

Given the test cases data, you want to know how many cases were done on a given date – 18-May-2020?
You can use either XLOOKUP or VLOOKUP for this. I recommend using XLOOKUP if you are running Excel 365.
Refer to sample formulas below.
=XLOOKUP(“18-May-2020”,testing[Date],testing[Test cases done])
=VLOOKUP((“18-May-2020”,testing,2,FALSE)

3. Gap between two dates

Dates & time values are used often in IT situations (project planning, estimation etc.) To calculate the gap between two dates, simply subtract one from another. Like this:
=date2-date1
For more on date related calculations, refer to this excellent guide.

4. Working days between two dates

What if you want to calculate the FTE (full time equivalent) for a project module. You can use NETWORKDAYS formula to find out the number of working days between two dates and multiply that with headcount to get FTE required.
Something like this:
Number of working days =NETWORKDAYS(date1, date2)
Number of working days with Friday, Saturday weekend =NETWORKDAYS.INTL(date1, date2, 7)
Working days for 4 day workweek (MTWT) =NETWORKDAYS.INTL(date1, date2,”0000111″)
The pattern 0000111 refers to Monday to Thursday as working days (0) and Friday to Sunday as weekend (1).
Related: 42 Date & time tips for working in Excel

5. Nth smallest item

We can use MIN() to find the smallest item in any data (and MAX() for largest). But what if you want to find the 2nd smallest item or 4th largest one?
You can use SMALL() and LARGE() formulas for this purpose. See below examples:
2nd smallest number of cases in any day  =SMALL(testing[Test cases done],2)
3rd highest number of cases in any day
=LARGE(testing[Test cases done],3)
Which date had 2nd smallest number of cases completed?
=XLOOKUP(SMALL(testing[Test cases done],2),
testing[Test cases done],testing[Date])

6. One week moving average

Moving averages help with understanding the trend. Let’s say you want to know what is the 7 day moving average of test cases done? You can use AVERAGE formula with relative references, as illustrated below.
Related: Moving averages in Excel | Weighted averages in Excel

7. Extract portions from text

You can use Excel’s flash fill to extract portions of text on one time basis. If you want to make it more dynamic then you must learn the text formulas. There are many, but start with these 4.
  • FIND – to find the position of one text in another
  • LEFT – to get part of text from left
  • RIGHT – to get part of text from right
  • MID – to get text from the middle
Here is an example to extract user name from email address in cell J4 (john.doe@acme.com)
=LEFT(J4, FIND(“@”, J4)-1)

8. Combine text values

If you want to combine a bunch of values but include a separator in between, use TEXTJOIN function. Here is an example to combine email addresses in cells J4:J8
=TEXTJOIN(“, “,,J4:J8)
For more on TEXTJOIN refer to this page.

9. Generate random data

Excel has many useful functions to create random data. If you just want a random number between two values, use the RANDBETWEEN() function. To generate a bunch of random values, use the newly introduced RANDARRAY() function. See these examples:
10 Random whole numbers between 1 & 100:
=RANDARRAY(10,,1,100,TRUE)
A random phone number:
=RANDBETWEEN(1111111111, 9999999999)
8 random dates in year 2020:
=RANDARRAY(8,,”1-JAN-2020″,”31-DEC-2020″,TRUE)
Other examples of random data in Excel:
  • Random sample from a list
  • Random sentences in Excel
  • More on RANDARRAY function

10. Avoid errors

Just as you want to have bug free code, your Excel files should also be devoid of errors. You can do this in below ways:
  • Use if not found option with functions like XLOOKUP, FILTER, XMATCH etc.
  • Use IFERROR to print alternative message when your formula has error
  • Check errors with ISERROR function 
Click here to download the 10 Excel formulas workbook. Use the sample data and completed formulas to learn all of these. 

Something else?

Do you want to learn more? Please share your questions or suggestions in the comments box. I will create a post or video to help you.
#evba #etipfree #eama #kingexcel
📤How to Download ebooks: https://www.evba.info/2020/02/instructions-for-downloading-documents.html?m=1

Popular Posts