Excel Guide
Excel Guide
MOST
BY
MATT BRATTIN
FROM
SHORTCUTS
GENERALLY HELPFUL (1 OF 2)
TRIM: Used in data cleaning to remove leading LEFT: Used to grab some number of
or trailing blanks that are often difficult to see in characters starting from the left of the cell
the source data contents
Syntax: Syntax:
TRIM(Cell Reference) LEFT(Cell Reference,char num)
RIGHT: Used to grab some number of MID: Used to grab some number of characters
characters starting from the right of the cell starting from a designated count from the left
contents of a cell's contents
Syntax: Syntax:
RIGHT(Cell Ref,char num) MID(Cell Ref,Start Num, Char Num)
YEAR: Used to extract the year from a date. EOMONTH: Used to derive the last day in a
Similar to MONTH, DAY, and other related month determined by a dated cell and a
functions specific number of months to roll forward.
Syntax: Syntax:
YEAR(Date Reference) EOMONTH(Date Cell, Months)
TEXT: Incredibly useful function for a variety of Not CONCATENATE: Instead of the
things, namely in extracting specialized formats CONCATENATE or CONCAT functions, use
from cells. the ampersand (&) to join strings and cell
contents to create something new.
Syntax:
TEXT(Cell Reference, Format) Syntax:
Cell&"Text 1"&Cell&"Text2"
VALUE: Used to extract the value from a value FORMULATEXT: Quick way to show the
stored as text. Helpful if you want to maintain formula in another cell without having to copy
original data. and paste using apostrophes or other work
arounds.
Syntax:
VALUE(Text Reference) Syntax:
FORMULATEXT(Cell reference)
AVERAGEIFS: Used to average values from a data set using specific criteria
Syntax:
AVERAGEIFS(Average Range,Criteria range 1, Criteria 1, Criteria Range N,
Criteria N)
MINIFS/MAXIFS: Used to extract the minimum/maximum value from an array meeting specific criteria
Syntax:
MINIFS/MAXIFS(Value Array, Criteria range 1, Criteria 1, Criteria Range N, Criteria N)
UNIQUE: Easily extract the unique values from IFERROR: Used to create rules for how to present
an Array without having to de-duplicate. It is a calculations with errors as outputs. Used to flag
dynamic spill function. errors or clean presentation layer data.
Syntax: Syntax:
UNIQUE(Array you want unique values from) IFERROR(Original calculation, Value to display if
an error results)
FILTER: Filters a range of data based on conditions you define - among the most powerful
new functions!
Syntax:
FILTER(array, include, [if_empty])
TOROW: Transforms an array or range of values TOCOL: Transforms an array or range of values
into a single row. into a single column.
Syntax: Syntax:
TOROW(array, [ignore], [scan_by_column]) TOCOL(array, [ignore], [scan_by_column])
HSTACK: Horizontally stacks multiple arrays or VSTACK: Vertically stacks multiple arrays or
ranges into one. ranges into one.
Syntax: Syntax:
HSTACK(array1, array2, ...) VSTACK(array1, array2, ...)
linkedin.com/in/mattbrattin
youtube.com/mattbrattin
tiktok.com/@mattbrattin
tmbanalytics.com