Excel Functions Mastery Guide for Data Analysis 1745389138
Excel Functions Mastery Guide for Data Analysis 1745389138
(THE ULTIMATE
FUNCTIONS GUIDE)
Know your IFs, COUNTIFs, AVERAGEIFs and all other IFs too -
after all, financial modeling is just a series of IFs that could
happen in this world.
GAMMADIST Returns the gamma distribution. FREQUENCY Calculates the frequency distribution of data.
LN Returns the natural logarithm of a number. MEDIAN Calculates the median of a dataset.
LOG Returns the logarithm of a number to a specified base. MIN Returns the smallest value in a range of cells.
MOD Returns the remainder of a division operation. NPER Returns the number of periods for an investment based on periodic, constant payments and a constant
interest rate.
ODD Rounds a number up to the nearest odd integer.
QUOTIENT Returns the integer portion of a division operation.
PI Returns the mathematical constant π.
RANK Returns the rank of a number in a list of numbers.
POWER Raises a number to a specified power.
SLOPE Calculates the slope of the linear regression line through a given set of data points.
RADIANS Converts degrees to radians.
STDEV Estimates standard deviation based on a sample.
RAND Returns a random number between 0 and 1.
VAR Calculates the variance of a dataset.
SIGN Returns the sign of a number.
ZTEST Calculates the one-tailed probability-value of a Z-test.
SIN
LOGICAL
Returns the sine of an angle given in radians.
RIGHT Extracts a specified number of characters from the right side of a text string. LOOKUP AND REFERENCE
SEARCH Finds one text string within another and returns the starting position. INDEX Returns the value of a cell in a specified row and column.
MATCH Searches for a value in a range and returns its relative position.
SUBSTITUTE Replaces existing text with new text in a text string.
OFFSET Returns a reference offset from a starting cell.
TEXT Formats a number as text using a specified format.
VLOOKUP Searches for a value and returns a corresponding result from a specified column.
UPPER Converts text to uppercase.
HLOOKUP Searches for a value and returns a value in the same column from a specified row.
VALUE Converts a text string that represents a number to a number.
XLOOKUP Searches for a value and returns a result from another range or array.
XNPV Returns the net present value for cash flows at irregular intervals.
DAY Extracts the day portion of a date.
NPV Returns the net present value of an investment based on a series of cash flows.
DAYS Calculates the number of days between two dates.
RATE Calculates the interest rate per period of an annuity.
HOUR Extracts the hour portion of a time.
IRR Calculates the internal rate of return for a series of cash flows that occur at regular intervals.
MINUTE Extracts the minute portion of a time.
SECOND Extracts the second portion of a time. UNIQUE Returns unique values from a range or array.
IFERROR Returns a value you specify if a formula evaluates to an error; otherwise, returns the result of the formula.
WEEKDAY Returns the day of the week as a number.
FM
WC FM
5. Expert
WC
4. Power User
3. Advanced
WC
FM
LET,
2. Intermediate LAMBDA,
ï Users demonstrate a
Array Formulas,
1. Basics mastery of Excel that
FILTER, SORT,
extends beyond formulas
Power Query, VBA
The XLOOKUP function in Excel is a powerful and versatile tool for searching a
range, returning corresponding values, and handling various lookup scenarios.
• Arguments
• Examples
1. Basic XLOOKUP
• Examples
3. Approximate Match
4. Reverse Lookup
5. Handling Errors
• Examples
6. Binary Search
• Tips
1. Wildcard Characters:
2. Array Mode:
3. Dynamic Arrays:
4. Error Handling:
Stands for Vertical Lookup. It's a function used A newer function introduced in Excel that stands for
to search for a value in the first column of a Extended Lookup. It's designed to overcome some
range and return a value in the same row from Definition limitations of VLOOKUP and offers more flexibility
another column. and capabilities.
Searches for a value in the leftmost column of More versatile and can perform lookups in any direction
a table and returns a value in the same row Functionality (horizontal or vertical). It also allows for approximate
from a column you specify. and exact matches without sorting data.
Requires specifying the column index number Column Automatically returns values based on their
where the return value is located. Indexing position in the lookup and return arrays, eliminating
the need for a separate column index number.
May return errors if the lookup value is not found Allows for customizable error handling with the
or if the table is not sorted (for approximate Handling [if_not_found] parameter, providing more control over
matches). Errors error messages.
Available in older versions of Excel and widely Available in Excel 365 and Excel 2021, so compatibility
used in legacy spreadsheets. Compatibility may be limited to newer versions unless using the
XLOOKUP function backport.
Suitable for simple vertical lookups where data Ideal for more complex lookup scenarios, unsorted
is sorted and the lookup value is in the leftmost Use Cases data, and when flexibility and efficiency are
column. paramount.
This formula searches for the value This formula searches for the value
"1003" in column B, returns the corre- "1003" in the range B2:B5 (lookup_array),
and returns the corresponding value from
sponding value from column C (the Example the range C2:C5 (return_array). XLOOKUP
second column of the range B2:C5), and
uses an exact match (FALSE). automatically performs an exact match.
XLOOKUP VS FILTER www.fmworldcup.com
XLOOKUP(lookup_value,
lookup_array, return_array, FILTER(array, include,
[if_not_found], Syntax [if_empty])
[match_mode],
[search_mode])
ï Flexible Lookup Direction: Can search from ï Dynamic Arrays: Returns dynamic arrays that
Key
top-to-bottom or bottom-to-top. automatically spill over to adjacent cells.
ï Exact Match by Default: Searches for an exact ï Multiple Conditions: Supports filtering based on
multiple criteria.
Features
match unless specified otherwise.
ï Error Handling: Allows specifying a custom ï Error Handling: Allows specifying a custom
message if the lookup value is not found. message if no data meets the criteria.
ï Multiple Lookup Values: Can search for ï Versatile: Can be used to filter data both
multiple values at once. horizontally and vertically.
SUMIFS is an Excel function designed for summing values based on multiple criteria. It
allows users to specify different conditions in various ranges, summing only the values that
meet all specified criteria. The syntax provides a sum range, multiple criteria ranges, and
their corresponding conditions.
SYNTAX
EXAMPLES
More flexible for complex conditions. Limited flexibility due to single criteria.
IF FUNCTION CHEATSHEET FMWC
www.fmworldcup.com
SYNTAX
If the value in cell A1 is greater than 10, return "Yes"; otherwise, return "No" If the value in cell A1 is greater than 10, return "Yes"; otherwise, return "No"
ADVANCED OPTIONS
IF with OR IF with AND IF with ISBLANK
If A1 is greater than 10 or B1 is "Approved", return "Yes". If A1 is greater than 10 and B1 is "Approved", return "Yes". Check if A1 is blank.
ERROR HANDLING
BASIC IF NESTED IF
If the formula results in an error, display a custom error message. If the formula results in #N/A error, display a custom message.
This nested IF formula classifies values in cells A1 and B1 into categories (High, Medium, Low) based on Identify duplicate values in a range. If the
multiple conditions. If A1 > 10 and B1 is "Approved," it's "High." If not, it checks if A1 > 5 and B1 is "Pending" for value is a duplicate, return “Duplicate”, if
"Medium." Otherwise, it's "Low." Useful for tiered classification. not, then “Unique”.
REMEMBER
Always Balance Parentheses: Ensure that each opening parenthesis has a corresponding closing parenthesis.
Use Cell References: Whenever possible, refer to cell values to make the formula dynamic.
Test in Steps: Break down complex IF statements into simpler ones for easier troubleshooting.
XMATCH CHEATSHEET www.fmworldcup.com
3. Function Name
4. Arguments lookup_value
The value you want to search for.
lookup_array
The range or array where the lookup value will be searched.
[match_mode] (optional)
Specifies the type of match. Default is 0 (exact match).
• 0 or omitted: Exact match.
• -1: Exact match or next smallest item.
• 1: Exact match or next largest item.
[search_mode] (optional)
Specifies the direction of the search. Default is 1 (search from top
to bottom or left to right).
5. Return Value The position of the matched item relative to the lookup array.
Returns #N/A if no match is found.
6. Example
Searches for the value 42 in cells A1:A10 using an exact match (match_-
mode = 0) and searches from top to bottom (search_mode = 1).
The value returned is 5 indicating the row in which the number is located.
7. Notes • XMATCH is a newer version of the MATCH function in Excel, introduced in Excel 2019
and Excel for Microsoft 365.
• It offers more flexibility than the MATCH function by allowing for approximate matching
and specifying the search direction.
• XMATCH can handle both vertical and horizontal lookup arrays.
8. Tips • Use XMATCH for advanced lookup scenarios where you need more control over the
matching criteria and search direction.
• Experiment with different match modes and search modes to tailor the function to your
specific requirements.
• Combine XMATCH with other functions like INDEX and IFERROR for more powerful
lookup formulas.
INDEX /MATCH CHEATSHEET FMWC
www.fmworldcup.com
DEFINITION
Index/Match is a combination of two functions in Excel used to look up values in a table.
PURPOSE
Index/Match is a combination of two functions in Excel used to look up values in a table.
Extracts data from a specified row and column in Finds the position of a lookup value within a
Usage a table. Usage range.
If you have a data table with sales figures and want When you need to find the position of a customer's
Example to retrieve a specific value based on its row and Example name in a list to retrieve their corresponding sales
column position, you can use the Index function. data, you can use the Match function.
INDEX/MATCH COMBINATION
Purpose Combines the Index and Match functions to perform flexible and dynamic lookups in Excel.
Overcomes the limitations of VLOOKUP, such as the inability to search to the left of the lookup column and the requirement for exact
Advantages matches.
Usage By nesting the Match function within the Index function, you can perform lookup operations that are not possible with VLOOKUP.
When you need to perform a two-way lookup to retrieve data based on both row and column criteria, Index/Match is the preferred
Example method.
USEFUL TIPS
1. Using Index/Match for Flexible Lookups 2. Avoiding Errors with Match 3. Combining Index/Match with Other Functions 4. Using Exact Match
Unlike VLOOKUP, Index/Match allows you to MATCH function can return errors if the Index/Match can be combined with other By default, MATCH performs approximate
perform lookups in any column, not just the lookup value is not found in the search array. Excel functions to perform more complex matches. To ensure an exact match, use the
leftmost one. This flexibility is useful when To handle this, use error handling functions calculations or manipulations. For example, third argument of MATCH function and set it to
your lookup value doesn't reside in the first like IFERROR or ISERROR to display custom you can use it with IF function to perform 0 (zero). This tells Excel to find an exact match
column of your table or when you want to messages or perform alternative actions conditional lookups or with SUM function to for the lookup value.
return values from columns to the right of when errors occur. sum values returned by the Index/Match
your lookup column. formula.
5. Understanding Array Formulas 6. Dynamic Ranges with Index/Match 3. Enhancing Performance 8. Using Index/Match with Wildcards
Index/Match can be used within array You can make your Index/Match formulas To improve the performance of your Index/ Index/Match can be combined with wildcard
formulas to perform calculations across dynamic by using functions like OFFSET, Match formulas, minimize the use of volatile characters like asterisks (*) or question marks
multiple cells or ranges. When using Index/ INDIRECT, or dynamic named ranges. This functions and unnecessary calculations. (?) to perform partial matches or pattern-based
Match in array formulas, remember to press allows your formulas to adjust automatically Additionally, try to limit the size of your lookups. This is helpful when you need to
Ctrl + Shift + Enter instead of just Enter to as your data changes or expands. lookup arrays to only include the necessary search for values that match a specific pattern
properly enter the formula as an array data. or contain certain substrings within larger text
formula. strings.
EXAMPLES
1. Basic Index/Match 2. Multi-column Index/Match 3. Advanced Index/Match
Example
1. DATA TABLE 1. Write down input data such as Interest rate, number of periods, and starting amount if
you want to see how your savings amount would change under different scenarios
A great tool for your what-if analysis. A range of cells in which you can change
values in some of the cells and come up with different answers to a problem. 2. Calculate the savings amount from the initial input data
3. Insert additional testable input data - changes in interest rate, starting amount.
Instructions
How to create it?
5. Put in row and column input cell that corressponds to the layout you have created in step #3 and press OK data table will update too!
Example
2. PIVOT TABLE
1. Store order history with customed ID, product ID, product price and
A PivotTable is a powerful tool to calculate, summarize, and analyze data that lets product category
you see comparisons, patterns, and trends in your data.
2. Choose the table from step 1
Instructions
How to create it?
Example
3. DATA VALIDATION
1. On your input data Excel sheet, create a cell where users will be
Use data validation to restrict the type of data or the values that users enter into a able to choose between different store locations
cell. One of the most common data validation uses is to create a drop-down list.
2. Offer to choose from a list of store locations such
Instructions as “USA, Spain, UK, Australia, Japan, Germany”
How to create it?
Example
4. POWER QUERY 1. Pull in data from a different Excel file that contains participant names and stage points
Power Query (known as Get & Transform in Excel) is a great tool for minimizing 2. Clean Data - remove unneeded columns, assign data types, rename columns for better understanding, etc.
repetitive daily tasks. You can import or connect to external data and then shape 3. Pull in another data
this data. For example, remove a column, change a data type, or merge tables in source on the background of
ways that meet your needs. Then, you can load your query into Excel to create the participants - country,
Example
5. GROUP DATA
1. Level 1 – for top level
If you have a list of data you want to group and summarize, you can create an management, Level 3 or 4
outline of up to eight levels. Very important for financial models to switch between – for accountant in-depth
different levels of data complexity. Group data instead of hiding rows/columns! data review
Instructions
How to create it?
www.fmworldcup.com
Failing to save your work Misunderstanding the difference Failing to remove duplicates,
frequently can result in loss of between absolute ($A$1) and handle missing values, and
data if Excel crashes or if there is relative (A1) cell references can ensure consistency can result
a power outage. Use the lead to errors in your formulas, in inaccurate analysis and
autosave feature and frequently especially when copying them reporting. Regularly clean and
press Ctrl+S to save your across multiple cells. validate your data to maintain
progress. its integrity.
Using overly complex formulas can Features like Power Query, Power Manual data entry is prone to errors
make your spreadsheet difficult to Pivot, and Macros can significantly and is time-consuming. Use data
understand and maintain. Break enhance your productivity and data import features, data connections,
down complex formulas into handling capabilities. Ignoring and automation to minimize manual
smaller, manageable parts or use these advanced features can limit entry and improve accuracy.
helper columns. your efficiency.
5.
10 COMMON
EXCEL ERRORS
www.fmworldcup.com
#DIV/0! #VALUE!
Occurs when a formula attempts to divide a number by zero or an Occurs when a formula has the wrong type of argument or operand.
empty cell.
HOW TO SOLVE?
HOW TO SOLVE?
Check the divisor in your formula to ensure it’s not zero or blank. Ensure all cells referenced in the formula contain the correct data type.
Use IFERROR or IF to handle the potential division by zero. Use TEXT or VALUE functions to convert data types if necessary.
#NAME? #REF!
Occurs when Excel doesn’t recognize text in a formula.
Occurs when a reference is invalid.
HOW TO SOLVE?
Check for typos in function names and named ranges. HOW TO SOLVE?
Enclose text strings in quotes.
Update the formula to use the correct cell references.
Use UNDO (Ctrl+Z) if you’ve accidentally deleted cells.
#N/A #NUM!
Occurs when a value is not available to a function or formula. Occurs when there is a problem with a number in a formula or function.
HOW TO SOLVE? HOW TO SOLVE?
Check the lookup value and the source range for correct references. Verify the numeric arguments in the formula.
Ensure data consistency in lookup operations. Adjust the formula to fit within Excel’s numeric limits.
#NULL! #SPILL!
Occurs when you use an intersection of two ranges that don’t
intersect. Occurs when a formula returns multiple results, but Excel can’t display
them all.
HOW TO SOLVE?
Use correct range references and ensure the intended ranges HOW TO SOLVE?
intersect.
Clear the obstructing data or move the formula to a new location.
Check the intended range for sufficient empty cells.
#CALC! ######
Occurs when Excel encounters a calculation error. Occurs when the cell isn’t wide enough to display the content.
Check the entire array formula for accuracy. Increase the column width.
Correct any issues in the source data. Use text wrapping or adjust the cell formatting.
6.
10 REASONS WHY
EXCEL IS THE BEST
SPREADSHEETS TOOLS
www.fmworldcup.com
A
AutoSum
b
Borders
c
Conditional Formatting
d
Data Validation
A quick way to sum a range of cells, Lines you can add to the edges of cells to A feature that changes the appearance A feature that controls the type of data
usually located on the Home tab. improve readability and organization. of cells based on specified conditions. or values that can be entered in a cell.
e
Excel Table
f
Filter
g
Goal Seek HLOOKUP
h
A collection of data organized in rows A function that searches for a value in the
A tool that allows you to display only A what-if analysis tool that finds the input
and columns, with features like sorting, top row of a table and returns a value in
the rows that meet certain criteria. values needed to achieve a specific goal.
filtering, and automatic formatting. the same column from a specified row.
i
IF Function
j
Justify
k
Keyboard Shortcuts
l
Legend
A logical function that returns one value
if a condition is true and another value if Aligns text to distribute it evenly across Key combinations that perform specific A key that explains the symbols, colors,
it is false. the width of a cell or range. commands more quickly. or patterns used in a chart.
m
Macro Named Range
n o
OFFSET
p
Pivot Table
A sequence of instructions that A defined name for a cell or range of Returns a reference to a range that is a A powerful tool for summarizing,
automates repetitive tasks, recorded cells, making it easier to reference in specified number of rows and columns analyzing, and exploring data in a
and run in Excel. formulas. from a starting cell or range. worksheet.
q
Quick Analysis
r
Relative Reference
s
Sparkline
t
Transpose
A tool that provides a fast way to
A cell reference that changes when a A small, simple chart within a cell that A feature that switches rows and
analyze data, offering options like
formula is copied to another cell. provides a visual representation of data. columns of a selected range of cells.
formatting, charts, and formulas.
u
UNIQUE VLOOKUP
v w
Watch Window
x
XLOOKUP
A function that searches for a value in the A tool that allows you to keep track of A function that searches a range or an
A function that returns a list of unique first column of a table and returns a value cells and their values as you work in array and returns an item corresponding
values from a range. in the same row from a specified column. different parts of your worksheet. to the first match it finds.
y
YEAR
z
Zoom Slider
Sign up for the next Excel Esports Battle!
MICROSOFT EXCEL
WORLD CHAMPIONSHIP
SEASON 2024
A tool at the bottom-right corner of the
A function that returns the year
corresponding to a given date.
Excel window that allows you to quickly BATTLE 5 May 30 4:30 PM London time
zoom in or out of the worksheet.
8.
MASTERING
LARGE DATA SETS
www.fmworldcup.com
a. Importing Data
ii. Format columns appropriately (text, date, numeric) for accurate analysis.
a. Array Formulas
!".+'()
i. Master array formulas to perform calculations efficiently. !"#$%
!+,-$'(
)
&#'()
!$#*'(
ii. Apply array functions such as SUMIFS, AVERAGEIFS, )
and COUNTIFS.
i. Replace VLOOKUP with INDEX and MATCH for faster and more
flexible lookups.
a. Power Pivot
a. Random Sampling
!"#$%&'(')*+"&,-.&/,'#012&3'(&34"'#"&'(&563")&7'34-&
>(&'&4"3"(#&FGH"-I&563")&?J1&E"FG(&=#4'#F"4#&K%"%&/,'#012&#-&34"'#"&'(&563")
7'34-&#,'#&LK(3#G-(%&'%&'(&G(F-G3G(M&'NNI&K%G(M&3K%#-7"4&"7'G)&'HH4"%%"%&'(H&#,"
:;<(6:=9789(6=>(!.?8@./A
;BC(DE6D@(<;CF/@;<
!"#$%"&'()*+,*-(./(&01#2%3+(4",5(653,789
A02(G3)(3%+0(+"#$%"&'(401H(4",5()*+,*-(./(&01#2%3+(I'(2+")J
653,789(4",5(DKG*%L(!"#$%'(I'(,'$")J(")(,5*(-*+G1"$,"0)(0&
,5*($10I%*#M(653,789(4"%%(I1*3H(",(-04)("),0(+,*$+
3)-($10N"-*(,5*(DKG*%(&01#2%3()*G*++31'L
!"#$%!&'()'$%&*$+,-).,/0
"12$34%3.$#"25/."#
%67$%869()'$:;<9=$3>?=@$)A:=;$BC=;D$?AE=FG
0=FH$<9$?67I$&@@$DAC$7==E$9A$EA$<F$9DJ=$<7$6$?AKK67EH$LA;$=>6KJ@=M$N#;<9=$67$3>?=@
)A:=;$BC=;D$-$?AE=$9A$6JJ=7E$F8==9O$L;AK$:A;PQAAPO$67E$F8==9R$L;AK$:A;PQAAPR
67E$;=KAS=$ECJ@<?69=F$L;AK$?A@CK7$T$67E$%869()'$:<@@$?AK=$Q6?P$:<98$67$=>6KJ@=
AL$6$)A:=;$BC=;D$-$?AE=$9869$?67$Q=$CF=EI$&@FAH$%869()'$U<S=F$6$E=96<@=E
=>J@6769<A7$6QAC9$98=$)A:=;$BC=;D$-$?AE=I$'8=7H$VCF9$?AJD$67E$J6F9=
98=$?AE=$67E$DACW;=$UAAE$9A$UAI
IJK)1I!4234)1!L)AMN35MOP
JQR)?S1?5)KJRTO5JK
!"#$%&'"()*+,-).'/0)10#/234
56/7,),#%)%89)"66:)/8);'":),8<6)-6=%),>6+';'+)'";8=<#/'8")/0#/7,)$8+#/6:
'")#")?@+6$),066/*)40',)',)#"8/06=)+#,6).06")9,'"()10#/234)+89$:),#-6)%89
,8<6)/'<6*)?@>8=/)%89=)?@+6$),066/)#,)#)1AB);'$6*)18>%)#":)>#,/6),8<6
8;)/06):#/#)'"/8)10#/234)C9";8=/9"#/6$%)'/7,)"8/)>8,,'D$6)/8)+8>%)#":)>#,/6)/06
.08$6)/0'"()#,)/06=67,),/'$$),8<6)+8"/6"/)$'<'/#/'8",)/8).0#/)10#/234)+#"):'(6,/E*
10#/234).'$$)6@>$#'")/06):#/#)#":)"8.)%89)+#"),/#=/)#,F'"()G96,/'8",)/8
06$>)$8+#/6),>6+';'+)'";8=<#/'8")/0#/)%89)"66:*)10#/234)+#"),9++6,,;9$$%
$8+#/6)#":),08.)%89)/06)'";8=<#/'8")%89)#=6)$88F'"();8=H)>8,,'D$%),#-'"()%89
/'<6)#":)#)06#:#+06):8'"()/06),#<6).'/0)?@+6$*
?-6")/089(0)10#/234)',),9>6=)>8.6=;9$)#":)9,6;9$)U)/06):#/#)8=),8$9/'8",
'/)>=8-':6,)+#"),8<6/'<6,)D6)'"#++9=#/6*)K6)#:-',6)%89)/8))#$.#%,
:89D$6V+06+F)#":),66)';)/06)#",.6=,)>=8-':6:)#=6)+8==6+/
C#":):8"7/)=6$%)8")10#/234);8=)6-6=%/0'"()W9,/)%6/X
11.
HISTORY OF
MICROSOFT EXCEL
www.fmworldcup.com
1982
Microsoft launched Multiplan, a spreadsheet program, a competitor to
Lotus 1-2-3.
1985
Birthday of Microsoft Excel on Mac
1987
Excel 2.0: Birthday of Microsoft Excel on Windows
1990
Excel 3.0 Included toolbars, drawing capabilities, outlining, add-in support,
3D charts, and many more new features
1992
Excel .0 Introduced auto-fill. Also, an easter egg in Excel .0 reveals a hidden
animation of a dancing set of numbers 1 through 3, representing Lotus 1-2-3,
which is then crushed by an Excel logo.
1993
Excel 5.0: Introduction of isual asic for Applications ( A), taking Excel to
unprecedented levels of functionality
1997
Excel 7: Introduced the Office Assistant ( lippy) and included
improvements to A.
www.fmworldcup.com
HISTORY OF MICROSOFT EXCEL
1999
Excel 2000: Introduced the Clipboard feature, allowing users to interact
with and use multiple objects simultaneously.
2002
Excel XP (Part of office XP): Featured a new task pane, improved data
validation, and added the AutoRecover function for better data
protection.
2003
Excel 2003: Introduction of the List feature (precursor to Tables), which
enabled easier data management, and improvements to data analysis tools.
2007
Excel 2007: Introduced the Ribbon interface, named variables, and Open
Office XML file formats.
2010
Excel 2010: Introduced Power Query (add-in), enabling users to work with
larger datasets, as well as Excel Web App and mobile version for Windows 7.
2013
Excel 2013: New start screen, 50 new functions, Flash Fill tool,
recommended charts, and three new chart tools; design, layout,
and format.
www.fmworldcup.com
HISTORY OF MICROSOFT EXCEL
2016
Excel 2016: Added the Ink Replay button, Shared with Me feature, and
integration with Power BI for advanced analytics.
2017
Office 3 5 including Excel 3 5 version introduced which had all updates
automatically incorporated once they are released.
2018
The release of Excel 2019 introduced new functions like CONCAT and
TEXTJOIN, improved the Power Query Editor with M Intellisense, and
added new data visualization options such as funnel charts and
map charts. Introduction of the ynamic Arrays for Office 3 5 users.
2021
Excel 2021, new functions introduced: LAM A LET to define
your own formulas.
2022
Release of additional dynamic array function kit (MAP, LAMBDA, SCAN, etc.)
2023
IMAGE function released, waiting: Microsoft Copilot for Excel (aka Clippy AI?)
www.fmworldcup.com
Want to Learn more
about Data
Analytics Free?
Do Join the Community
Channel Link is in the Bio and
Comments section
Mandar Patil