View Single Post
  #4   Report Post  
Ron Rosenfeld
 
Posts: n/a
Default Text string and sum

On Mon, 14 Nov 2005 02:37:09 +0000, michaelp
wrote:


Good Afternoon

I have 2 columns one with a string of numbers and the other a number

1,-,-,-,-,-,-,-,-,- 247
-,2,-,-,-,-,-,-,-,- 34
-,-,3,-,-,-,-,-,-,- 34
-,-,-,4,-,-,-,-,-,- 24
-,-,-,-,5,-,-,-,-,- 2608
-,-,-,-,-,6,-,-,-,- 2


What I want to do is search the range of text string to find lets say
the number 2 (the numbers appear in the same position every time or is
replaces with the - ) then sum the next column that relates to the
number 2 etc

I have 1023 lines of text string (total number of combinations of 10)



Thank you


Perhaps something like:

=SUMIF(A1:A1023,"*2*",B1:B1023)


--ron