EXCEL_Formulas_Bible

0.0(0)
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/10

flashcard set

Earn XP

Description and Tags

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

11 Terms

1
New cards

What is the key feature added in Excel 365/Excel 2021's Formulas Bible?

Dynamic Arrays and many new formulas.

2
New cards

What formula would you use to find if a list has duplicates?

=MAX(COUNTIF(A1:A1000,A1:A1000)) If the answer is 1, list is unique.

3
New cards

How do you calculate the number of unique values in a range?

Use the formula: =IF(COUNTA(A1:A100)=0,0,COUNTA(UNIQUE(FILTER(A1:A100&"",A1:A100<>""))))

4
New cards

What formula can generate sequential weekday names?

=TEXT(DATE(2017,1,SEQUENCE(7)),'ddd') for 3 character names.

5
New cards

How can you count the number of working days in a month?

=NETWORKDAYS(INDEX(EOMONTH(A1,0),1),EOMONTH(A1,0)) assuming A1 contains the month.

6
New cards

What formula is used to calculate age from a birthday?

=DATEDIF(A1,TODAY(),'y') where A1 contains the birthday.

7
New cards

What is the formula to convert a month name to a number?

=MONTH('1'&A1) where A1 contains the month name.

8
New cards

Give the formula for converting from mm/dd/yy to dd/mm/yy.

=FILTERXML(''&SUBSTITUTE(TEXT(A1,'mm/dd/yyyy'),'/','')&'','//s[2]')&'/'&FILTERXML(''&SUBSTITUTE(TEXT(A1,'mm/dd/yyyy'),'/','')&'','//s[1]')&'/'&FILTERXML(''&SUBSTITUTE(TEXT(A1,'mm/dd/yyyy'),'/','')&'','//s[3]')
9
New cards

How to find the location of the first number in a string?

=IFERROR(AGGREGATE(15,6,FIND({0,1,2,3,4,5,6,7,8,9},A1,SEQUENCE(LEN(A1))),1),'')

10
New cards

What formula can determine if a year is a leap year?

=MONTH(DATE(A1,2,29))=2 where A1 contains the year.

11
New cards

How do you generate non-repeating random numbers in Excel?

=INDEX(UNIQUE(RANDARRAY(30-1+1,,1,30,TRUE)), SEQUENCE(10)).