Home |
Search |
Today's Posts |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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 |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Updating columns in worksheet based on values from another worksh. | Excel Worksheet Functions | |||
Match Values in Rows with Partial Values in Columns | Excel Worksheet Functions | |||
Copy Values from WorkSheet back to Another Workbook Replacing Values in Worksheet | Excel Programming | |||
Comparing values in two columns and displaying missing values in n | Excel Programming | |||
Excel Compare values in columns & display missing values in a new | Excel Discussion (Misc queries) |