PBaldy,
I really appreciate you helping me on this. It is driving me crazy.
I attempted the Debug.print on the code, but I'm not sure if that was supposed to send a report but nothing happened on click except what has been happening (listbox goes blank)
This is the original rowsource for the listbox (list55) -
SELECT [tblAM].[fldAssetID], [tblAM].[fldManufacturer], [tblAM].[fldCategory], [tblAM].[fldModel], [tblAM].[fldSerial], [tblAM].[fldSite], [tblAM].[fldFloor], [tblAM].[fldLocation], [tblAM].[fldPO], [tblAM].[fldPLine] FROM [tblAM];
Here is another "On_Click" Event I used for the cmd button -
Private Sub fldAssetID_Label_Click()
Me.List55.RowSource = "SELECT [tblAM].[fldAssetID], [tblAM].[fldManufacturer], [tblAM].[fldCategory], [tblAM].[fldModel], [tblAM].[fldSerial], [tblAM].[fldSite], [tblAM].[fldFloor], [tblAM].[fldLocation], [tblAM].[fldPO], [tblAM].[fldPLine] FROM [tblAM], ORDERBY [tblam].[fldLocation]"
End Sub
I pretty much copied the original rowsource from the listbox and added the me.list55.rowsource = and the Order By clause at the end, but the listbox still goes blank after I click the button.
I also tried removing the semicolon from the original rowsource thinking that might work, but it did not.