Why is Nebraska listed after other states?

My guess is this: the table was produced from a database. The data there was sorted by state, but using a stored value that was the state abbreviation (they would have used the US Postal Service's official state abbreviations). The actual state name was then assigned via a lookup at the time the report was generated.

This would be consistent with the normal way databases are structured. A quick explanation:

  • Databases are broken into subject matter tables to avoiding duplication. The tables serve as the single place where each element is stored. This minimizes space and simplifies data maintenance. The tables are then linked to each other.

  • The report you cite lists Store Name and City, grouped under State Name. It probably came from a database that had Store information in one table, possibly city information in another table, and state information in still another.

  • State names are various lengths, so they make a poor unique value to use for linking the information in the State table to other tables. That linking value needs to be as short as possible and a standard length. The state abbreviation is perfect for that, it's always exactly two characters. The state name was likely a field in the State table.

  • In your report, the store listings are alphabetical by city name, so it is likely that one of the tables used for the report contained the city name and state abbreviation. The person who created the report sorted everything based on that table and then used the state abbreviation to look up the state name for the report.

The person who produced the report probably overlooked the fact that the alphabetical order for state names is different from that for the abbreviations. But that gives you the state name order in the report:

Abbrev  State Name
 NC     North Carolina
 ND     North Dakota
 NE     Nebraska
 NJ     New Jersey
 NV     Nevada
 NY     New York