Home |
Search |
Today's Posts |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi,
I'm not entirely sure what you are trying to achieve here so perhaps a better explanation will result in a better response but this should get you started... This code will loop thru all worksheets not called Menu and perform the same operation on each sheet. In your example you don't tell us what/where value1, value2 etc come from... Dim objWs As Worksheet, intInc As Integer For Each objWs In ThisWorkbook.Worksheets With objWs If Not .Name = "Menu" Then .Cells(2, 2).End(xlToRight)(1, 2).Value = Value1 .Cells(3, 2).End(xlToRight)(1, 2).Value = Value2 .Cells(4, 2).End(xlToRight)(1, 2).Value = Value3 Call EssMenuRetrieve End If End With Next objWs hth, OJ |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
how to make find menu on excel work sheet? | Excel Worksheet Functions | |||
extracting totals from 1 work sheet to another work work sheet | Excel Discussion (Misc queries) | |||
GETTING SELECTED DATA FROM A WORK SHEET TO OTHER WORK SHEET | Excel Discussion (Misc queries) | |||
i am missing work sheet menu bar | Excel Discussion (Misc queries) | |||
Populating work sheet combox with another work sheet values | Excel Discussion (Misc queries) |