Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi
'in below "do while macro" I would like to find/use the value in cell (x,3) in activesheet and goto next sheet x 2 'and find the same value which is stored in column 1 and from that row copy value in column 7 'which I then use i prev sheet x 2 and insert in cells (x, 6) 'Do I use some kind of vlookup? -------------------------------------------------- Sub Hämta_instrumentnamn() Sheets("makro").Activate ActiveSheet.Previous.Select x = 5 Do While Cells(x, 3).Value < "" Cells(x, 3).Value.Copy x = x + 1 Loop End Sub |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
copy rows from one Data sheet to another sheet based on cell conte | Excel Discussion (Misc queries) | |||
copy data of two cells from Sheet 2 into one cell in Sheet 1 | Excel Worksheet Functions | |||
How can i copy data from a tabbed working sheet to a summary sheet | Excel Discussion (Misc queries) | |||
how to copy a cell with formula from sheet 1 (data is all vertical) into sheet 2 | Excel Worksheet Functions | |||
Copy data from sheet 1 to sheet 2 based on day/date | Excel Programming |