- Why does FREQUENCY return more numbers than I put in bins?
- FREQUENCY always returns length(bins_array) + 1 results. With bins {50; 100}, you get three counts: items ≤50, items between 50–100, and items >100. The extra count captures values exceeding your highest bin, which is essential for a complete distribution.
- What happens if my bins array is not sorted?
- FREQUENCY doesn't error, but the results become meaningless because the function assumes bins are in ascending order and calculates ranges accordingly. Always sort your bins from smallest to largest before using FREQUENCY.
- Can I use FREQUENCY to count text values or categories?
- No. FREQUENCY works exclusively with numeric data. To count text values (SKUs, warehouse names, categories), use COUNTIF (single condition) or COUNTIFS (multiple conditions) instead.
- How do I display FREQUENCY results properly in a spreadsheet?
- FREQUENCY returns a vertical array. In Google Sheets, select the starting cell and the array spills downward automatically. In Excel, select a vertical range the size of your expected result, type the formula, and press Ctrl+Shift+Enter to activate array mode.