Jun 23, 2008 #1 Elvis72 Technical User Dec 6, 2007 211 US I have the following Select Statement in my RowSource for a Subform: SELECT [TitleID], [Position Title] AS FullName FROM TblStaffRequirements; I need to sort by Position Title, and I'm not sure how to achieve that? Thanks so much for your time!~
I have the following Select Statement in my RowSource for a Subform: SELECT [TitleID], [Position Title] AS FullName FROM TblStaffRequirements; I need to sort by Position Title, and I'm not sure how to achieve that? Thanks so much for your time!~
Jun 23, 2008 1 #2 PHV MIS Nov 8, 2002 53,708 FR SELECT [TitleID], [Position Title] AS FullName FROM TblStaffRequirements ORDER BY 2; Hope This Helps, PH. FAQ219-2884 FAQ181-2886 Upvote 0 Downvote
SELECT [TitleID], [Position Title] AS FullName FROM TblStaffRequirements ORDER BY 2; Hope This Helps, PH. FAQ219-2884 FAQ181-2886