Oh, and additionally - you can use multiple fields to sort on in the order of the sort:
Me.OrderBy = "[Last_Name], [First_Name]"
or if you want to use descending on one (or both)
Me.OrderBy = "[Last_Name] DESC, [First_Name]"
Me.OrderBy = "[Last_Name] DESC, [First_Name] DESC"