| 
			
			theducks
 While I understand it doesn't do conditional, it should still be able to sort by series starting at blank entries then the series where there are series with any number.
 
 I therefore went back to basics and tried 2 sort attempts.
 
 First, to randomise records, I clicked the Tags table header.
 
 1. sort_columns_at_startup = [('authors', 0), ('title', 0)]
 
 2. sort_columns_at_startup = [('title', 0), ('authors', 0)]
 
 Option 1 got titles alphabetically within authors, as I want but the series are all over the place.
 
 I then added to 2 above, the series :
 sort_columns_at_startup = [('authors', 0), ('series', 0) , ('title', 0)]
 
 This results in exactly what I wanted. It mimics clicking manually on Title, then Series, then Authors.
 
 Thanks for all Your help.
 |