Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hello,
I'm having trouble copying values from multiple worksheets into my summary sheet. What I need to do is, look at the value in column C, go to the worksheet with that name, find the bold cell, copy that value and paste it back in column L of the first sheet. I can do this for one cell, but how do I repeat it for each row in my summary table? Below is my attempt at code. Any thoughts? Sub FindBold() Application.ScreenUpdating = False Application.Calculation = xlCalculationManual Dim Rng As Range Dim jRow As Long For jRow = 14 To Cells(Rows.Count, "A").End(xlUp).Row Worksheets(Range(Cells(jRow, 3)).Text).Activate Cells.Find(What:="", After:=Range("C14"), LookIn:=xlFormulas, LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, MatchCase:=False, SearchFormat:=True).Activate Selection.Copy Sheets("BRIDGE").Select Range(Cells(jRow, 12)).Select Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _ :=False, Transpose:=False Next jRow Application.Calculation = xlCalculationAutomatic Application.ScreenUpdating = True End Sub |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
SUM VALUES on MULTIPLE SHEETS | Excel Worksheet Functions | |||
copy all and paste values for all sheets in a workbook | Excel Worksheet Functions | |||
copy sheets with values only and NO link to old workbook | Excel Programming | |||
Lookup multiple values on multiple sheets | Excel Programming | |||
How to get a sum of values from multiple sheets | Excel Programming |