M
MAB
In Excel 2000/XP is it possible to treat a range of cells as a table and run
sql statements against it? for example in sheet1 I have 3 columns Item_code,
quantity, amount. If I want to calculate the total quantity, and amount for
every Item to appear in Sheet2 which I could get by the following SQL
statement
select item_code, sum(quantity),sum(amount)
from table_name (or range of cells)
group by item_code
thx
sql statements against it? for example in sheet1 I have 3 columns Item_code,
quantity, amount. If I want to calculate the total quantity, and amount for
every Item to appear in Sheet2 which I could get by the following SQL
statement
select item_code, sum(quantity),sum(amount)
from table_name (or range of cells)
group by item_code
thx