View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
T. Valko T. Valko is offline
external usenet poster
 
Posts: 15,768
Default Adding values in first "X" number of rows dynamically

Another one...

C1 = your number variable for how many rows to include in the calculation
A:A = range to calculate

=SUM(A1:INDEX(A:A,C1))

If C1 is empty the formula will calculate the entire range.

--
Biff
Microsoft Excel MVP


"MattyP" wrote in message
...
Hi -
I have a data worksheet which has item sub-totals in column F (each row is
a
different item). In a different worksheet, I have a a few other
calculations
going on, to determine # of resources available (this will vary, based on
data entered elsewhere). What I'd like to be able to do is only add the
sub-totals from "X" number of rows, depending on the # of resources
available
(which can change).

So, for example, if I've determined to have 10 resources available, I'd
like
to only calculate/sum the sub-totals from the first 10 rows. However, if
this changed to 12 resources, I'd like to be able to dynamically come up
with
a total from the first 12 rows instead. Does that make sense (and is
something like that possible, in Excel ?) Any ideas would be most
appreciated !

Thanks for your help,
- Matt