I'm populating an access report from an sql string thus: (edited version below)
SQL = "SELECT asset.Local_ID, asset.Category, asset.Asset_Label, asset.Asset_Loc, " _
& "asset.Task_Price, asset.Invoice_Price"
Me.RecordSource = SQL
No problems, everything is working fine...