So you discovered one good reason to use code tags - indentation, the lack of which makes code harder to read. Another is that without the tags, the forum will add a space to your code after 50 continuous characters, which often elicits comments about errors in the code when there is no such error. Code tags (pound/hashtag button on menu bar) will usually automatically indent your code. The great advantage of using the tags is that they will hold whatever indentation you apply, and from my experience, will often add to it. So I'd advise using "Go Advanced" to preview your code layout because if you put 4 space indentation on your lines, it will probably be too much. I find that 2 spaces is often best IMHO, but I always check it to ensure additional spaces were not added. See post 5 - this is your code without tags.
This is your unmodified code with tags (i.e. I did not alter any indentation)
Code:
Private Sub Find_Sort_Click()
Select Case Find_Sort
Case 1 'Sort by Name
Me.[Combo106].RowSource = "Select [Members].[ID], [Members].[Mem_Name], [Members].[Call], [Members].[Active]" & _
" FROM Members" & _
" WHERE ((Members.Active) = Parent.[Is_Active])" & _
" Order By [Mem_Name];"
Case 2 'Sort by Call Sign
Me.[Combo106].RowSource = "Select [Members].[ID], [Members].[Mem_Name], [Members].[Call], [Members].[Active]" & _
" FROM Members" & _
" WHERE ((Members.Active) = Parent.[Is_Active])" & _
" Order By [Members].[Call];"
End Select
[Combo106].Requery
End Sub