View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Duke Carey Duke Carey is offline
external usenet poster
 
Posts: 1,081
Default Rows added after refresh not in formula

Greg -

What about modifying your query to INCLUDE the formula? So...if you are
running a query like

Select
Product,
Price,
Quanitity
from
Inventory
order by
Price

and you want to multiply Price by a discout rate (whatever is in $G$5??) you
could use this query instead - and it would automatically fill in the REUSLTS
for you.

Select
Product,
Price,
Quanitity,
Price*Discount as NetPrice
from
Inventory
order by
Price


"Greg Snidow" wrote:

Greetings all. I know I saw the answer to this one recently, but I can not
find it now. I have a workbook with worksheets linked to SQL2K. I have many
formulas like =F6*$G$5. I drag the formula down to one row below the last
row of data on the sheet, and everything works as it should. The problem is
that when I refresh the data if any rows are added they are not included in
the formula, eventhough they are added above where I dragged the formula. Is
there an easy way to make any new rows be included in the formula? Thank
you.