Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel,microsoft.public.excel.misc,microsoft.public.excel.programming
|
|||
|
|||
![]()
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 |