Book your seat in my upcoming Excel Masterclass (Dates to be announced soon)
Guide on 3 New Excel Formulas
Generates a sequence of numbers in an array, allowing customization of the start value, end value, step size, and array dimensions.
Formula Layout:
=SEQUENCE(rows, [columns], [start], [step])
Example:
=SEQUENCE(5) // Generates a sequence of 5 numbers starting from 1
=SEQUENCE(3, 4, 10, 5) // Generates a 3×4 array starting from 10 with a step size of 5
Here’s an alternate way to add numbering in Excel:
https://www.instagram.com/reel/C0G539xSCfH/?igsh=YnA0aWUwNWptZjgz
Returns a list of unique values from a range or array, eliminating duplicates and simplifying data analysis and reporting tasks.
Formula Layout:
=UNIQUE(array, [by_col], [exactly_once])
Example:
=UNIQUE(B2:B11) – Returns a list of unique values from cells A1 to A10

=UNIQUE(A2:B13) – Returns unique values comparing by columns in the range A2:B13

Finds and returns the relative position of a specified item in a range or array, providing more flexibility than traditional lookup functions by supporting approximate and exact matches, as well as searching in any direction.
Formula Layout:
=XMATCH(lookup_value, lookup_array, [match_type], [search_mode])
Example:
=XMATCH(E3, C3:C7, 0, 1) –
This formula would search for the value in cell E3 within the range C3:C7 and return the relative position of the first exact match, searching from first to last.

Book your seat in my upcoming Excel Masterclass (Dates to be announced soon)