N
Nigel Molesworth
In an Access 2007 database I want to create a table whose data it
taken from a subset of another table, where a certain property is
true. A bit like a query or report with the following syntax.
SELECT Sales.ID, Sales.Quantity, Sales.Address, Sales.Label
FROM Sales
WHERE (((Sales.Label)=Yes))
ORDER BY Sales.ID;
The reason it must be a table is because the program which will use
this data will only allow me to access the tables.
Is this possible?
taken from a subset of another table, where a certain property is
true. A bit like a query or report with the following syntax.
SELECT Sales.ID, Sales.Quantity, Sales.Address, Sales.Label
FROM Sales
WHERE (((Sales.Label)=Yes))
ORDER BY Sales.ID;
The reason it must be a table is because the program which will use
this data will only allow me to access the tables.
Is this possible?