Skip to content
Free Excel Tutorials
  • Home
  • Excel For Beginners
  • Excel Intermediate
  • Advanced Excel For Experts

Data Analysis

  • How to Create Gantt Chart in Excel
  • How To Create Frequency Distribution in Excel
  • Data Series in Excel
  • Conditional Formatting New Rule with Formulas in Excel
  • Number and Text Filters Examples in Excel

References

  • How to calculate two-way lookup VLOOKUP in Excel Table
  • Two-way lookup with VLOOKUP in Excel
  • How to use Excel TRANSPOSE Function
  • How to use Excel COLUMN Function
  • How to use Excel MMULT Function

Data Validations

  • Prevent invalid data entering in specific cells
  • How To Create Drop-down List in Excel
  • Excel Data validation require unique number
  • Excel Data validation date in next 30 days
  • Excel Data validation number multiple 100

Basic text sort formula in Excel

by

To dynamically sort text values in alphabetical order, you can use use a formula based on the COUNTIF function.

Formula

=COUNTIF(range,"<="&A1)

Explanation

In the example shown, the formula in C5 is:

=COUNTIF(countries,"<="&B5)

where “countries” is the named range B4:B13

How this formula works

This formula uses the “greater than or equal to” operator with text, something you might not have tried before. When Excel compares text, it decides which value is “greater” than another based rules that follow the ASCII numbering scheme.

Inside COUNTIF, the range argument is supplied as the named range “countries” (B4:B13), and criteria is supplied as “less than or equal to” the value in C5. In each row, COUNTIFS returns the number of values that are less than or equal to the current value, which creates a sequential list of numbers (i.e. a rank) in the helper column.

Handling duplicates

If the data contains duplicate text values, the sequence of sort numbers will also contain duplicates, which will cause problems if you are trying to retrieve values with the INDEX function. To work around this problem, you can use a variation of the formula that increments duplicates with a second COUNTIF:

=COUNTIF(countries,"<"&B5)+COUNTIF($B$5:B5,B5)

Note the logical operator in the first COUNTIF function has been adjusted, and the range in the second COUNTIF function is an expanding reference.

Listing sorted values

The helper column can be used used to retrieve sorted values by rank. In E5, the formula used to retrieve values is:

=INDEX(countries,MATCH(ROWS($E$5:E5),helper,0))

This is an INDEX and MATCH formula that uses an expanding reference to generate sequential numbers, which are fed into MATCH as lookup values. MATCH figures out where each number exists in the data, and INDEX retrieves the value at that position. See this page for a more detailed explanation.

Post navigation

Previous Post:

How to calculate project complete percentage in Excel

Next Post:

Popularly Used Excel Functions and their examples

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Learn Basic Excel

Ribbon
Workbook
Worksheets
Format Cells
Find & Select
Sort & Filter
Templates
Print
Share
Protect
Keyboard Shortcuts

Categories

  • Charts
  • Data Analysis
  • Data Validation
  • Excel Functions
    • Cube Functions
    • Database Functions
    • Date and Time Functions
    • Engineering Functions
    • Financial Functions
    • Information Functions
    • Logical Functions
    • Lookup and Reference Functions
    • Math and Trig Functions
    • Statistical Functions
    • Text Functions
    • Web Functions
  • Excel VBA
  • Excel Video Tutorials
  • Formatting
  • Grouping
  • Others

Logical Functions

  • SWITCH function: Description, Usage, Syntax, Examples and Explanation
  • Nested IF function example in Excel
  • How to use Excel NOT Function
  • IFERROR function: Description, Usage, Syntax, Examples and Explanation
  • Not Equal To ‘<>‘ operator in Excel

Date Time

  • How to calculate next scheduled event in Excel
  • WEEKNUM function: Description, Usage, Syntax, Examples and Explanation
  • YEARFRAC function: Description, Usage, Syntax, Examples and Explanation
  • How to get Weekdays, Working days between Two Dates in Excel
  • Extract time from a date and time in Excel

Grouping

  • If cell contains one of many things in Excel
  • Categorize text with keywords in Excel
  • Group times into unequal buckets in Excel
  • Map inputs to arbitrary values in Excel
  • Group numbers with VLOOKUP in Excel

General

  • Count cells that do not contain many strings in Excel
  • Convert column number to letter in Excel
  • Basic text sort formula in Excel
  • AutoFit Column Width, AutoFit Row Height in Excel
  • Automatically fill series of cells in Excel using AutoFill
© 2025 xlsoffice . All Right Reserved. | Teal Smiles | Abbreviations And Their Meaning