On Apr 11, 10:08 pm, JLGWhiz <JLGW...@discussions.microsoft.com>
wrote:
> That should be Do Until i = lr
>
> "minkokiss" wrote:
> > On Apr 11, 1:46 pm, JLGWhiz <JLGW...@discussions.microsoft.com> wrote:
> > > Maybe I just can't read good any more. I seem to see three different
> > > descriptions of an objective. The illustration of data shows that values in
> > > column A is added to the values in column B and the result is posted to
> > > column C in a different sheet.
>
> > > The code shows that each column in the active workbook is copied to Range
> > > AV7 on a workbook named workbook. Since each iteration copies to the same
> > > range, only the last iteration will survive.
>
> > > You need to clearly state what you want to do with the data on the active
> > > sheet and then define how you want it to be arranged on the destination
> > > sheet. i.e. append each iteration vertically, or append each iteration
> > > horizontally, etc. Leave blank line between iteration, don't leave blank
> > > lines. If you can describe it, it can be built.
>
> > > "minkokiss" wrote:
> > > > this is the code I will use to iterate through the data in one of the
> > > > columns. I need help to come up with the code for the second column
> > > > and then pasting in the third. Essentially what I am trying to do is:
>
> > > > Column A Column B Column C (another worksheet)
> > > > a e a + e
> > > > b h b + h
> > > > c l c + l
> > > > blank p blank + p
> > > > d m d + m
>
> > > > and so on
>
> > > > For i = 1 To lLastCol
>
> > > > If Cells(5, i).Value = SearchAcc Then
> > > > Cells(5, i).Offset(1, 0).Select
> > > > Range(Selection, Selection.End(xlDown)).Copy
> > > > Workbooks("workbook").Sheets("worksheet").Range("$AV
> > > > $7").PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks
> > > > _
> > > > :=False, Transpose:=False
>
> > > > End If
>
> > > > Next i
>
> > > > Thank you in advance for any help
>
> > I apologize for the confusion. The situation is the following: I get a
> > monthly report from a cell phone company but the headers on this
> > report are not the same each month(God knows why) so what I am trying
> > to do is:
>
> > 1) Find the first column by searching through the headers for a
> > particular string
> > 2) Find the second column by doing the same
> > 3) Go through each of the two columns row by row and sum the rows of A
> > and B and paste them into same row in C.
> > For example sum row 1 of column a with row 1 of column B and paste in
> > row 1 column C. Then do the same with all the rows with data in rows A
> > and B and paste into C.
>
> > Does that bring clarification to my issue or I got everybody more
> > confused?
Thanks a lot for your help JLGWhiz. Your code helped me a little bit
but it is still not what I am looking for. This is just because I
don't know how to explain stuff

So ok few issues for me:
1. I don't want the columns to be copied and pasted to the second
sheet in their entirety. I just want the values from them (under the
headings) since the sheet I am pasting data already has different
headings and formatting in place.
2. I do not want columns A and B copied at all I just want to use the
data from them and copy the result of each A+B row to the C row on
the other sheet. For example I have the values 1 and 2 in A and B in
sheet one and I want to write a program evaluating the total (3) and
pasting ONLY the total in a row in C (on the other sheet). I would
like to do this for every row in A and B and fill C with the results.
Do you understand what I am looking for? If yes please let me know if
there is a way I can modify the code you sent me to accomplish what I
am looking for. Thank you for helping the newbie out. Your help is
greatly appreciated