B
Bill
What's the syntax to specify ascending
sort when there are two sort fields to
effect?
I tried several different variations of
inserting the ASC keyword with TransDate
and TransSer, but was un-successful. E.g.,
[TransDate] ASC & """","""" & [TransSer];"
or
[TransDate] & """"ASC,"""" & [TransSer];"
do not work.
strSQL = "SELECT * FROM Transactions"
strSQL = strSQL & " WHERE [FolioID] = " & """" & ID & """"
strSQL = strSQL & " ORDER BY [TransDate] & """","""" & [TransSer];"
sort when there are two sort fields to
effect?
I tried several different variations of
inserting the ASC keyword with TransDate
and TransSer, but was un-successful. E.g.,
[TransDate] ASC & """","""" & [TransSer];"
or
[TransDate] & """"ASC,"""" & [TransSer];"
do not work.
strSQL = "SELECT * FROM Transactions"
strSQL = strSQL & " WHERE [FolioID] = " & """" & ID & """"
strSQL = strSQL & " ORDER BY [TransDate] & """","""" & [TransSer];"