Microsoft Excel Advanced Certificate

Module 58: VLOOKUP with MAX
Duration: Approx 20 minutes
58.1 VLOOKUP with MAX
You can use VLOOKUP with MAX function to look up the highest value in any data set.
58.2 Instructional Video
VLOOKUP with MAX – 2m 52s
58.3 Task
Estimated Time: 10 minutes
Download the worksheet that accompanies this video by clicking below. Once downloaded, follow the video above and you will see how to use VLOOKUP with MAX.
Learning Topics
Learning Topics
Learning Topics
Learning Topics
Learning Topics
Learning Topics
Learning Topics
Learning Topics
Learning Topics
Learning Topics
Learning Topics
Learning Topics
Learning Topics
Learning Topics
Learning Topics
Learning Topics
Learning Topics
Learning Topics
Learning Topics
Learning Topics
Learning Topics
Learning Topics
Learning Topics
Learning Topics
Learning Topics
Learning Topics
Learning Topics
Learning Topics
Learning Topics
Learning Topics
Learning Topics
Learning Topics
Learning Topics
Learning Topics
Learning Topics
Learning Topics
Learning Topics
Learning Topics
Learning Topics
Learning Topics
Learning Topics
Learning Topics
Learning Topics
Learning Topics
Learning Topics
Learning Topics
Learning Topics
Learning Topics
Learning Topics
Learning Topics
Learning Topics
Learning Topics
Learning Topics
Learning Topics
Learning Topics
Learning Topics
Learning Topics
Learning Topics
Learning Topics
Learning Topics
Module 29: FIND Function
29.1 FIND Function
You can use the FIND function in Excel to get the location of specific text inside a string of text.
also find multiple instances of a letter. FIND can be used in conjunction with other logical formulas such as
IF, ELSE, OR, AND, VLOOKUP, HLOOKUP and INDIRECT to look up data.
=FIND(find_text, within_text, [start_num})
Module 37: ISLOGICAL Function
Check if value inc ell is logical. ISLOGICAL part of IS group returning TRUE/FALSE. TRUE if data is logical -FALSE if not. Used with cell address to provide a value. Example is B4 logical based. TO DO =ISLOGICAL(value)-- value, the value to check.
THIS CAN be used with IF to return specific data ( if the value is TEXT)
Module 50: Select all Cells with Comments
Comments are a useful feature, stores info in a cell. commetted cells have a lil red dot in the corner. Some worksheets have plenty of comments this finds them and allows you the edit them. TO DO -
Module 26: EDATE Function
26.1 EDATE Function
The EDATE function in Excel allows you to return the serial number of a date that is the specified amount of months after a set date.
Module 53: Strikethrough
Module 2 : AND Function
So the cell is greater than 80, and cell > 80, and cell > 80 will either make the cell say true or false.
=AND(D6>80,AND(E6>80),AND(F6>80)
OR WITH IF
Module 3 : Auto Updating Drop-down Lists
Make the date you want a list from a table so you can add new infomation. Go to Data then date validation
Module 5 : Charts that Update Automatically
Charts that Update Automatically
To make a chart update automatically you can select your existing list and format it as a table by going to the Home tab and clicking on Format as Table. Now you can add to the bottom of your source list and the data will automatically appear in your chart.
GOOGLE SHEET
Use Dynamic Ranges: If you expect new data to be added regularly, consider using functions like OFFSET
or INDIRECT
to define a dynamic data range. This way, the range will automatically adjust as you add new data.
- Example:
=OFFSET(A1,0,0,COUNTA(A:A),COUNTA(1:1))
– This formula will create a dynamic range starting from cell A1, expanding downward and rightward automatically as new data is added.
Module 6 : CHOOSE Formula
the first argument is where the cell is going to be placed in and the following arguments are values starting from the same first cell . The following arguments are where you want the results to be . this is a look up function like v and h
Module 7 : Compare 2 Lists with VLOOKUP Function
Comparing two lists in Excel using the VLOOKUP formula is a common task that can help you find matches or differences between these lists. Here’s a step-by-step guide on how to do it:
Step 1: Prepare Your Lists
- Arrange Lists: Ensure your two lists are in separate columns. For example, List 1 is in Column A, and List 2 is in Column B.
Step 2: Use the VLOOKUP Formula
-
Formula Placement: Click on the cell where you want the comparison results to appear. This could be next to your first list (e.g., in Column C, next to List 1).
-
Enter VLOOKUP Formula: The basic syntax of the VLOOKUP formula is
=VLOOKUP(lookup_value, table_array, col_index_num, [range_lookup])
.- lookup_value: The value in List 1 you want to find in List 2. For example, if you're starting with the first item in List 1, this would be
A2
. - table_array: The range that contains List 2. If your List 2 is in B1 to B100, then the range is
B$1:B$100
. The dollar signs ($) fix the range so that it doesn’t shift when you copy the formula down. - col_index_num: Since you’re looking up in a single column (List 2) and you want to return the matching value from this column, this number is
1
. - [range_lookup]: Use
FALSE
to find an exact match.
- lookup_value: The value in List 1 you want to find in List 2. For example, if you're starting with the first item in List 1, this would be
-
Complete the Formula: For instance, if you are comparing the value in cell A2 with values in column B (from B1 to B100), the formula would be
=VLOOKUP(A2, B$1:B$100, 1, FALSE)
.
Step 3: Drag the Formula Down
- Copy Formula: After entering the formula in the first cell (e.g., C2), drag the fill handle (a small square at the bottom right of the cell) down to copy the formula to the other cells.
Step 4: Analyze the Results
- Interpreting Results: The VLOOKUP formula will return the matching value from List 2. If there’s no match, it will return an error (typically #N/A).
- Highlight Differences: Use Conditional Formatting to highlight cells in your results column that contain errors, indicating items in List 1 that are not in List 2.
Tips:
- Data Consistency: Ensure that the data in both lists are consistent (e.g., no extra spaces, same case) to avoid missed matches.
- Error Handling: You can wrap your VLOOKUP formula in an
IFERROR
function to handle errors more gracefully. For example:=IFERROR(VLOOKUP(A2, B$1:B$100, 1, FALSE), "Not Found")
. This will display "Not Found" instead of an error if there’s no match. - Duplicate Values: VLOOKUP will return the first match it finds. If List 2 contains duplicates, it won’t necessarily find all instances.
By using the VLOOKUP formula, you can effectively compare two lists in Excel to identify matches or differences, which is especially useful in various data analysis tasks.