Split values equally into groups using excel array formula
Question: How do I divide values equally into groups (3 lists or less)?
Answer:
Formula in c4:C25:
Formula in D4:D25:
Formula in D4:D25:
Try changing value (1, 2 or 3) in D1 and see how List1, List2 and List3 changes.
Download example workbook
Download excel sample file for this tutorial.
split-values-into-groups-using-excel-formula.xls
(Excel 97-2003 Workbook *.xls)
Functions in this article:
IF(logical_test;[value_if:true];[value_if_false])
Checks whether a condition is met, and returns one value if TRUE, and another value if FALSE
INDEX(array,row_num,[column_num])
Returns a value or reference of the cell at the intersection of a particular row and column, in a given range
ROW(reference)
Returns the rownumber of a reference
MIN(number1,[number2])
Returns the smallest number in a set of values. Ignores logical values and text
Related blog posts
- Text to columns: Split words in a cell (excel array formula)
- Sort text values by length using array formula in excel
- Sort values in parallel (array formula)
- Sort numeric values by closest to farthest to a specific number in excel (array formula)
- Filter unique distinct list sorted based on sum of adjacent values using array formula in excel








Leave a Reply