Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Public Function basQryByOrdnial(sTable As String, ordnial As Integer) As String
'Michael Red 1/9/04.
'for Tek-Tips thread701-743214, Michael42
'Sample Usage: _
? basQryByOrdnial("tblCombins", 2) _
SELECT * FROM tblCombins ORDER BY Col3;
Dim dbs As DAO.Database
Dim tdf As TableDef
Dim sSQL As String
Dim fldName As String
Set dbs = CurrentDb
Set tdf = dbs.TableDefs(sTable)
fldName = tdf.Fields(ordnial).Name
sSQL = "SELECT * FROM " & sTable & " ORDER BY " & fldName & ";"
basQryByOrdnial = sSQL
End Function