0% found this document useful (0 votes)
10 views26 pages

Excel 2019 Webinar Recent Functions

The document outlines a webinar on becoming a modern Excel expert, highlighting new features like Dynamic Arrays, XLOOKUP, FILTER, SORT, and UNIQUE functions. It details the benefits of these functions, their usage, and introduces an upcoming workshop for creating and analyzing dashboards with Power BI. Additionally, it provides registration information and incentives for early participants.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
10 views26 pages

Excel 2019 Webinar Recent Functions

The document outlines a webinar on becoming a modern Excel expert, highlighting new features like Dynamic Arrays, XLOOKUP, FILTER, SORT, and UNIQUE functions. It details the benefits of these functions, their usage, and introduces an upcoming workshop for creating and analyzing dashboards with Power BI. Additionally, it provides registration information and incentives for early participants.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
You are on page 1/ 26

BECOME A

MODERN EXCEL
EXPERT

1000 4.7 / 5 25+ MCEE


+

Students Trained Avg Workshop Rating Workshops & Courses Microsoft Certified

www.jatanshah.in

WEBINAR WILL BEGIN AT 6:45 PM IST


NOTE:
It is a webinar.

You participating = Me sharing more tips &


tricks.

20 Seconds
Delay
What are Spilled Arrays?

In September 2018, Microsoft announced the following


2 major changes:

1. Change in Excel’s calculation engine that allows us to input


one formula and get many results.

2. 7 new functions that were referred to as Dynamic Array


functions.
It affects not just the advanced but ALL users of Excel.
Results will now spill to cells around the formula cell
The change in the calculation engine helps you get multiple end results.
Whenever you have more than 1 end result, the rest of the results will spill
to cells around the formula cell.
Note: For a Spill range on cell
range
1. The formula “lives” only in cell G6. – i.e. only that cell is editable. The
formula in the cells below other than G6 will be greyed out.

2. The highlighted blue border appears if you are in a cell inside the spilled
range to show the extent of the spill. It disappears if you move outside
the spilled range.

3. The spilled range doesn’t carry over source formatting. Formatting does
not spill.

4. If there are existing values in the cells of the output range – you will
receive the new #SPILL! Error. This means the values can’t spill because
something is blocking it. Removing the obstruction will automatically
spill the formula
Note: For a Spill Range on a
table
1. If the spilled range is referencing an Excel Table, the range will
automatically expand or shrink as the tables size changes. In the
example demonstrated in the webinar, if we add more data to the
Excel Table, the spilled array in range G28 will automatically
expand to include it.
Note: To refer a Spill Range
1. To dynamically reference a spilled range, you need to refer to the
first cell (where the formula lives) and put in the hash (#) sign. In
the example used in the webinar you can input =G28# in L28 to
reference the entire spilled range.
XLOOKUP FORMULA
XLOOKUP is an upgrade over your traditional VLOOKUP & HLOOKUP
formulas.
It removes the earlier limitation of lookup formulas not being able to look to
the left side.

It can look to the left and can lookup in both directions.

Other advantages include:


1. Single Formula for horizontal as well as vertical lookups. No more H &
Vlookups.
2. Assigning text or value if you return an error in the if_not_found
argument
3. Built-in wildcard match
4. Searching last to fast option available now
Value that you’re trying to find Column or range of cells where Column or range of cells from
i.e value you are trying to you are trying to find the lookup where you’re trying to get the
match. value. end result.

=XLOOKUP(lookup_value, lookup_array, return_array,


[if_not_found], [match_mode], [search_mode])

What do you want to see if Default is Exact. Choose if you want to search
XLOOKUP doesn’t find a match Can be: from First to Last
and returns a N/A error. 1. Exact Or
For example: “Nothing Found” 2. Approx or Smaller Last to First
3. Approx or Larger Default is First to Last
4. Wildcard
FILTER FORMULA
Use the Filter formula to get a subset of your source data in a different
place dynamically. The subset will be based on a particular criteria you
mention.

This is different from the normal filter function as the end result is dynamic
and will constantly update if any change is made to the source.

Filter formula has the potential to become the new power lookup formula
because of it’s insane filtering capacity.

You can use the Filter formula in combination with multiple other
formulas.
We’ll be practicing an instance of this combination in the Combine
Worksheet of the webinar Excel file.
Criteria to filter your array by.
Example: B6:B20 = “Kerala”
Or C6:C20 > 30000. Whatever
cells fit the criteria, the rows of
them show up in the filter
formula result.

=FILTER(array, include,
[if_empty])
The data that you want a Optional Argument: If no cells match the
subset of. Select the columns criteria mentioned in include and filter has
that you want to have in the nothing to show, what do you want to see
end result. instead of an error.
Example: Mention “Can’t find anything”
here to see the text whenever filter doesn’t
find anything.
SORT & SORTBY FORMULA
Similar to the filter formula, SORT & SORTBY formulas are used to sort your
source data in a different place dynamically.

You use SORT formula when the end result is sorted based on a column
that is going to be a part of your end result. For example: If you plan
to sort a table with A, B & C columns by B column and your end result will
have all 3 columns i.e A, B & C, use the SORT formula.

You use SORTBY formula when the end result is sorted based on a column
that is NOT going to be a part of your end result. For example: If you
plan to sort a table with A, B & C columns by B column and your end result
will have only the A & C column, use the SORTBY formula.
Is your data horizontal instead of vertical?
The index number of the column you want to sort your If yes, set it to TRUE. Default is FALSE i.e
data by. vertical
Default is 1.

=SORT(array, [sort_index], [sort_order],


[by_col])
The data that will you will How do you want to sort your data?
sort. Ascending (default if you don’t enter a value here) is 1.
Descending is -1

Column by which you want to sort your array.

=SORTBY(array, by_array, [sort_order], ...)

The data that will you will How do you want to sort your data?
sort. Ascending (default if you don’t enter a value here) is 1.
Can be a part of your data as Descending is -1
UNIQUE FORMULA
Unique formula is used to extract the following:

1. Unique or Distinct Values from the input data

2. Values which occur exactly once

Best part about the formula is that it is dynamic. No other function in Excel
that is used to extract unique items is dynamic so this is a really great
formula for practical uses.

NO MORE USING REMOVE DUPLICATES FUNCTION NOW.


Is your data horizontal instead of vertical? If yes, set it
to TRUE. Default is FALSE i.e vertical

=UNIQUE(array, [by_col], [exactly_once])

Data to extract unique items Do you want unique i.e distinct values (FALSE) or values that
from. have no duplicates i.e that occur exactly once (TRUE)? Default
Can be a cell range or table is FALSE.
column
Map Chart Visual
Use Map Charts whenever you have Geographical data. Excel will only plot
the map of the region which contains the given data i.e Indian Map for
Indian States data, US Map for US States data. Excel is really smart, you
see!

Steps: Select your data > Insert > Maps > Filled Map
Funnel Chart Visual
Use Funnel Charts whenever you are dealing with a Marketing / Sales
funnel or you want to show the flow of a process.

Steps: Select your data > Insert > Waterfall Chart Icon > Funnel
Chart
Stock & Geo Data Types
OLD Excel vs NEW Excel
No Major Change

Excel 2016 & Excel 2019


lower
Versions.

Old Excel won’t support new formulas & will show an


error.
UPCOMING WORKSHOP
BECOME A CERTIFIED DASHBOARDS EXPERT
6 Hour Live Session | 3 Dashboards | Certified by MCT | Detailed Notes

Learn How to Create & Analyse Dashboards


Linking Excel with Power BI
Understanding & Creating Different Visuals in Power BI
Making a Dashboard Dynamic
Hands-on practice of creating Business Dashboards

Time: 6 PM to 9 PM – This Saturday & Sunday (31th October & 1st Nov)
MODERN EXCEL WEBINAR MODULES FOR FREE

SPILL XLOOKUP FILTER SORT (BY) UNIQUE COMBINED


ENGINE

CHALLENGE MAP CHART FUNNEL STOCK DATA MIN & MAX


S CHART IFS

EXCLUSIVE MODULES ON NEW UNEXPLORED


FUNCTIONS

SEQUENCE DYNAMIC
LATS
RANDARRAY TEXTJOIN IFS
+ MORE
Learn the skill Recorded Exclusive Get Certified by a
of creating Modules for this unexplored Microsoft Certified
Dashboards webinar content Trainer (MCT)

WORKSHOP BONUS 1 BONUS 2 BONUS 3

=
Rs 2300
COUPON CODE

MEP70
TO REGISTER FOR THE DASHBOARDS IN POWER BI
WORKSHOP + ALL MODULES + CERTIFIED BY A MCT
Rs 2300

Rs 690
FOR THE FIRST 15 PARTICIPANTS
ONLY
Workshop bundle cost AFTER it: Rs 2300
Q&A
Steps to get

1. Certificate 2. Excel File 3. Notes PPT


Special Thanks to Leila Gharani
1. Provide your honest 2. Endorse me for my
feedback Excel Skills
(if you gained value from this webinar)

LinkedIn Feedback Post

Link will be shared on the


group

3. Fill up a google form with your


name & email for me to send y’all
material + certificates
(NOT a data collection exercise)

You might also like