✂️ The Array Slicer

Goal: Extract a subset of data.
TAKE: Keeps rows/cols (Positive = From Start, Negative = From End).
DROP: Removes rows/cols (Returns the rest).

Source (5x5)
Result Spill Range
(Waiting...)
Ready...

💻 Formula Structure

=TAKE(array, rows, [columns])
  • Rows: +N (Top N) or -N (Bottom N).
  • Cols: +N (Left N) or -N (Right N).
-- Extract data
=TAKE( A1:E5, 3 )
Final Size:
-

⚠️ Logic Check

➕ Positive vs ➖ Negative
Positive numbers count from the Start (Top/Left).
Negative numbers count from the End (Bottom/Right).
🚫 Empty Arguments
If you omit the [columns] argument (or leave it blank), Excel assumes you want to keep all columns.