View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
Mike H Mike H is offline
external usenet poster
 
Posts: 11,501
Default HELP WITH THIS FORMULA

Hi,

I'd get rid of the A's in an anoother column using this formula

=SUBSTITUTE(G8,"A","")+0

Which uses column H and then add things up with this formula

=SUMPRODUCT(--(MOD(ROW(H8:H278)-ROW(H8),30)=0),H8:H278)

Mike

"Ayo" wrote:

What I am trying to do here is sum-up a bunch of cells but these cells have
"A" and the end of each value. For instance G8=4A, G38=6A, G98=9A etc.

I want to extract the values in the cells and add them up without the "A"s.
I was try to use the array formula below, but I am not getting the result I
want.

SUM(if(right({G8,G38,G68,G98,G128,G158,G188,G218,G 248,G278})="A",--SUBSTITUTE({G8,G38,G68,G98,G128,G158,G188,G218,G24 8,G278}),"A","") & "A",0)

Any ideas?