View Single Post
  #8   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Robert_L_Ross Robert_L_Ross is offline
external usenet poster
 
Posts: 35
Default Sum the first x cells in a range

Brilliant! Works like a charm!! Thanks!

"Peo Sjoblom" wrote:

Try

=SUM(E5:INDEX(E5:P5,COUNTA(E6:P6)))

replace COUNTA with COUNT if E6:P6 holds numbers


--
Regards,

Peo Sjoblom



"Robert_L_Ross" wrote in message
...
Weird one, but I know someone out there knows how to do this...

I have two rows, this fiscal year and last fiscal year.
I have a count of the cells that have values for this fiscal year (let's
say
the count of cells e6:p6 is 8).
I want to then sum the first 8 cells in row 5 (e5:p5) so I can return last
fy to date compared to this fy to date.

How would I build a function that would sum the first 8 cells in row 5?