How can I sort a list in the text body (bullet points) in pages alphabetically?

It seems like this should be a very basic feature that would be very useful yet I cannot for the life of me find a feature to do this very basic function. All the explanations I find online either refer directly to formatting tables or tell me to convert my list into a table and then sort it alphabetically. This seems very inconvenient so I think there must be an easier way? In Word this is quite simple.

MacBook Pro 14″, macOS 15.3

Posted on Mar 31, 2025 7:23 AM

Reply
Question marked as ⚠️ Top-ranking reply

Posted on Mar 31, 2025 8:05 AM

Nothing in Pages is based on MS Word and thus, the ability to sort bulleted text or even a list of plain text in Pages is missing from the application.


For sorting a list of words (not a bulleted list) in body text, the free WordService tool from the Mac App Store has a service named Sort Lines Ascending that instantly sorts the words in place. It does not work on a bulleted list though.


For sorting a list of text in body text, or a bulleted list of words, I wrote a macOS Shortcut Service that works on the selected content. It offers the ability to Sort Ascending, Sort Descending, or a simple Reverse order. Looks like this when run:



The Shortcut is written like the following (Note the keyboard shortcut used):



The entire Run AppleScript coding is:

use framework "Foundation"
use AppleScript version "2.4" -- Yosemite or later
use scripting additions

property ca : current application
property listOp : {"Reverse List", "Sort Ascending", "Sort Descending"}

on run {input, parameters}
	set myList to paragraphs of (input as text)
	set ascend to ca's NSSortDescriptor's alloc()'s initWithKey:"" ascending:true
	set descend to ca's NSSortDescriptor's alloc()'s initWithKey:"" ascending:false
	
	set OpSel to (choose from list listOp with title "List Operations" without multiple selections allowed and empty selection allowed)
	if OpSel is false then return
	
	if OpSel contains "Reverse List" then
		set revList to reverse of myList
		return ((ca's NSArray's arrayWithArray:revList)'s componentsJoinedByString:linefeed) as text
	else if OpSel contains "Sort Ascending" then
		set sortedA to (ca's NSArray's arrayWithArray:myList)'s sortedArrayUsingDescriptors:{ascend}
		return (sortedA's componentsJoinedByString:linefeed) as text
	else
		set sortedD to (ca's NSArray's arrayWithArray:myList)'s sortedArrayUsingDescriptors:{descend}
		return (sortedD's componentsJoinedByString:linefeed) as text
	end if
	
	return
end run



This was written and tested on macOS Sequoia v15.3.2 and Pages v14.3.


By clicking this link, you will be prompted to install this Shortcut for use in Pages.



5 replies
Sort By: 
Question marked as ⚠️ Top-ranking reply

Mar 31, 2025 8:05 AM in response to hagen69

Nothing in Pages is based on MS Word and thus, the ability to sort bulleted text or even a list of plain text in Pages is missing from the application.


For sorting a list of words (not a bulleted list) in body text, the free WordService tool from the Mac App Store has a service named Sort Lines Ascending that instantly sorts the words in place. It does not work on a bulleted list though.


For sorting a list of text in body text, or a bulleted list of words, I wrote a macOS Shortcut Service that works on the selected content. It offers the ability to Sort Ascending, Sort Descending, or a simple Reverse order. Looks like this when run:



The Shortcut is written like the following (Note the keyboard shortcut used):



The entire Run AppleScript coding is:

use framework "Foundation"
use AppleScript version "2.4" -- Yosemite or later
use scripting additions

property ca : current application
property listOp : {"Reverse List", "Sort Ascending", "Sort Descending"}

on run {input, parameters}
	set myList to paragraphs of (input as text)
	set ascend to ca's NSSortDescriptor's alloc()'s initWithKey:"" ascending:true
	set descend to ca's NSSortDescriptor's alloc()'s initWithKey:"" ascending:false
	
	set OpSel to (choose from list listOp with title "List Operations" without multiple selections allowed and empty selection allowed)
	if OpSel is false then return
	
	if OpSel contains "Reverse List" then
		set revList to reverse of myList
		return ((ca's NSArray's arrayWithArray:revList)'s componentsJoinedByString:linefeed) as text
	else if OpSel contains "Sort Ascending" then
		set sortedA to (ca's NSArray's arrayWithArray:myList)'s sortedArrayUsingDescriptors:{ascend}
		return (sortedA's componentsJoinedByString:linefeed) as text
	else
		set sortedD to (ca's NSArray's arrayWithArray:myList)'s sortedArrayUsingDescriptors:{descend}
		return (sortedD's componentsJoinedByString:linefeed) as text
	end if
	
	return
end run



This was written and tested on macOS Sequoia v15.3.2 and Pages v14.3.


By clicking this link, you will be prompted to install this Shortcut for use in Pages.



Reply

Mar 31, 2025 8:51 AM in response to hagen69

You are welcome.


Apple has chosen to provide a free application (Pages) and free operating system instead of the expensive Microsoft approach. People want Microsoft Word features in Pages yet don't want to pay for it. 😉


Apple is not competing with any word-processing vendor for market share and the free nature of Pages means it won't receive the budget or commitment to be what you want it to be.

Reply

Mar 31, 2025 8:17 AM in response to VikingOSX

Thanks a lot for the detailed response and the shortcut. I've installed it and it works fine. It seems hard to believe that a multi-trillion dollar company like apple provides its customers with laptops with incredible hard-ware, advertising them for gaming and AI, but the pre-installed software misses such a basic feature. Then again, this is the company whose iPads until recently didn't have a native calculator App so what do I know?

Reply

How can I sort a list in the text body (bullet points) in pages alphabetically?

Welcome to Apple Support Community
A forum where Apple customers help each other with their products. Get started with your Apple Account.