Hello, if the Report is based on a query you could add the following field to the query.
SortOrder: IIf([Value]="High",1,IIf([Value]="Medium",2,IIf([Value]="Low",3," ")))
Where [Value] is the name of your field that contains the values High, Medium & Low.
You will then be able to sort on the...