You are on page 1of 4

A B C D E F G H I

1 EMPLOYEEBASIC SAL HRA VLOOK UP


2 A 50 20 D 40
3 B 20 30
4 C 30 25
5 D 40 10
6 E 60 0
7
8 VLOOKUP (VALUE TO LOOK UP, ARRAY TABLE, COLUMN NUMBER, TRUE(APPROX)/FALSE(EXACT))

9 We use VLOOKUP when we need to find things in table by row


10 Spare part by the part number
11 Employee name based on their employee ID

A B C D E F G H I
1 SUBJECT A B C D E HLOOK UP
2 HINDI 50 60 70 40 30 D 25
3 ENGLISH 20 40 35 25 40
4 MATHS 30 10 45 75 85
5
6 HLOOKUP (VALUE TO LOOK UP, ARRAY TABLE, ROW NUMBER, TRUE(APPROX)/FALSE(EXACT))
7 Searches for value in the top row of table and returns value in the same column from row you specify in the tab
8 Marks of student in subject
9

A B C D E F G H I
1 EMPLOYEEREGION NO OF ORDSALES VALUE COUNT IFS
2 A EAST 60 80000 EAST >=50 1
3 B WEST 40 60000 WEST >=50 1
4 C WEST 75 100000 NORTH >=50 1
5 D NORTH 80 50000 SOUTH >=50 1
6 E EAST 20 30000
7 F SOUTH 90 40000
8
9 COUNTIFS AND SUMIFS
10 Countifs(criteria range, criteria, criteria range, criteria)
11 Sumifs(sum range, criteria range, criteria, criteria range, criteria)
12
13 To count the number of employees who belong to particular region and have orders exceeding specific number
14 To sum the sales value by employees who belong to particular region and have orders exceeding specific numbe

A B C D E F G H I
1 EMPLOYEEBASIC SAL HRA INDEX
2 A 50 20 HRA 10
3 B 20 30 OF 4TH EMPLOYEE
4 C 30 25
5 D 40 10
6 E 60 0
7 F 45 90
8
9 INDEX
10 Index(array range, row no, column no)
11
12 Index retrieves the value at given location in range
13 To count the number of employees who belong to particular region and have orders exceeding specific number
14 To sum the sales value by employees who belong to particular region and have orders exceeding specific numbe
J

LSE(EXACT))

row you specify in the table

J
SUM IFS
EAST >=50 80000
WEST >=50 100000
NORTH >=50 50000
SOUTH >=50 40000

exceeding specific number


s exceeding specific number

J
exceeding specific number
s exceeding specific number

You might also like