I'm using a Calc spreadsheet as my data source. I created a query which sorts the data by last name(some may be empty). This query returns expected results when run on its own. But when I run a Report based on this query, the report is unsorted
AND the query is altered (dropping the sort).
What would cause this to happen?
:: SQL ::
Code: Select all
SELECT "Full Name" AS "fname", "Home Address" AS "haddress", "City", "PC", "Email address" AS "email", "Cell Phone" AS "ph_cell", "Home Phone" AS "ph_home", "Last" FROM "Sheet1" WHERE "Full Name" <> '' ORDER BY "Last" ASC