Hi, I am very new with VB and had a nice select statement working, then realised I had to do an Order By and now it will not work.
I need to return a result set that is ordered by a id number.
Here is the statement that I have
AddTranRecords "SELECT tblTransactions .PDAID,tblTrans actions.Transac tionID, tblTransactions .TransDate, tblTransactions .Branch, tblTransactions .Description, tblTransactions .Debit, tblTransactions .Credit, tblTransactions .Paid FROM tblLoan INNER JOIN tblTransactions ON tblLoan.PDAID = tblTransactions .PDAID WHERE tblLoan.CustID =" & Me.CustID & "ORDER BY tblTransactions .PDAID ASC"
It works fine without the order by, I am struggling to get my head around how the string is laid out.
Thanks
I need to return a result set that is ordered by a id number.
Here is the statement that I have
AddTranRecords "SELECT tblTransactions .PDAID,tblTrans actions.Transac tionID, tblTransactions .TransDate, tblTransactions .Branch, tblTransactions .Description, tblTransactions .Debit, tblTransactions .Credit, tblTransactions .Paid FROM tblLoan INNER JOIN tblTransactions ON tblLoan.PDAID = tblTransactions .PDAID WHERE tblLoan.CustID =" & Me.CustID & "ORDER BY tblTransactions .PDAID ASC"
It works fine without the order by, I am struggling to get my head around how the string is laid out.
Thanks
Comment