It's Friday...need I say more.

This should be easier than I am making it. Here is whats in my Record Source:
SELECT Elements.*, Contacts.[Last Name], Contacts.[First Name], Contacts.Company, Contacts.[Job Title], Contacts.[Business Phone], Contacts.City, Contacts.[Last Name] AS [Last Name_Contacts2], Contacts.[First Name] AS [First Name_Contacts2], Contacts.[E-mail Address] AS [E-mail Address_Contacts2], Contacts.[Job Title] AS [Job Title_Contacts2], Contacts.[Business Phone] AS [Business Phone_Contacts2], Contacts.City AS City_Contacts2, Contacts.[State/Province] AS [State/Province_Contacts2], [Business Units].[Business Unit Description], Contacts.Attachments AS Attachments_Contacts2, Contacts.Event, Contacts.[Event Name], Contacts.Attachments AS Attachments_Contacts FROM [Business Units] RIGHT JOIN (Contacts RIGHT JOIN Elements ON Contacts.ID=Elements.ContactID) ON [Business Units].ID=Elements.BusinessUnit;
According to the above website I should be able to use the following in the form's load event:
Private Sub Form_Load()
Me.RecordSource = "qryLargeTable"
Me.txtSomeField.RowSource = _
"SELECT SomeField " & _
"FROM qryLargeTable " & _
"GROUP BY SomeField " & _
"ORDER BY SomeField;"
End Sub
Any takers on how to convert what I currently have to the suggestion? I think once I have an example of my own data, then the other dozen plus should make more sense. Thanks for your help.
****Or if anyone has a database example to post. Thanks.