% This file is embedded in datatool-user.pdf version 3.0.1 2025-03-05 % Example 103 Sorting Data Using \DTLsortdata on Age then Surname (Empty or Null Values) % Label: "ex:sortcsvage" % arara: pdflatex % arara: pdfcrop \documentclass[12pt]{article} \pagestyle{empty} \begin{filecontents}[noheader,overwrite]{customers.csv} Id,Organisation,Surname,Forename,Email,Age 1,,Parrot,Polly,pp@example.com,42 2,University of Somewhere,Canary,Mabel,mc@example.com 3,University of Somewhere,Zebra,Zoë,zz@example.com,21 4,Zinnia Florestry,Arara,José,ja@example.com,42 5,,Duck,Dickie,dd@example.com, 6,Newt Fellowship,Axolotl,Lizzie,la@example.com 7,Avian Emporium,Canary,Fred,fc@example.com,19 8,Newt Fellowship,,Molgina,m@example.com 9,,Mander,Sally 10,Élite Emporium,Fant,Eli,ef@example.com,101 \end{filecontents} \usepackage{datatool} \DTLsetup{store-datum,default-name=customers} \DTLread{customers.csv} \begin{document} \DTLsortdata{customers}{Age,Surname} \DTLaction{display} \end{document}