Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Can anyone tell me why the code below, only places the text on the first
worksheet, even though all worksheets are selected? Private Sub CommandButton1_Click() Dim Rng 'Application.ScreenUpdating = False Sheets(Array("June - August", "September - November", "December - February", _ "March - May")).Select Sheets("June - August").Activate Range("A200").Select Set Rng = Cells(ActiveCell.Row, 1) Rng(1, 1).Value = TextBox1.Text Rng(1, 2).Value = TextBox2.Text Rng(1, 4).Value = TextBox3.Text End Sub |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi Patrick,
Excel's ability to duplicate enties in each member of an array of grouped sheets is not exposed to VBA. Try instead the following adaptation of your code: '============= Private Sub CommandButton1_Click() Dim SH As Worksheet Dim Rng Dim arr As Variant Const baseCell As String = "A200" arr = Array("June - August", "September - November", _ "December -February", "March - May") For Each SH In Sheets(arr) Set Rng = SH.Range(baseCell) Rng(1, 1).Value = TextBox1.Text Rng(1, 2).Value = TextBox2.Text Rng(1, 4).Value = TextBox3.Text Next SH End Sub '<<============= --- Regards, Norman "Patrick Simonds" wrote in message ... Can anyone tell me why the code below, only places the text on the first worksheet, even though all worksheets are selected? Private Sub CommandButton1_Click() Dim Rng 'Application.ScreenUpdating = False Sheets(Array("June - August", "September - November", "December - February", _ "March - May")).Select Sheets("June - August").Activate Range("A200").Select Set Rng = Cells(ActiveCell.Row, 1) Rng(1, 1).Value = TextBox1.Text Rng(1, 2).Value = TextBox2.Text Rng(1, 4).Value = TextBox3.Text End Sub |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Cutting and Pasting Cells into a shape or textbox | Excel Discussion (Misc queries) | |||
pasting textbox value to active cell | Excel Discussion (Misc queries) | |||
Pasting TextBox values | Excel Programming | |||
Highlight all Text in a Textbox when the textbox is selected | Excel Programming | |||
Pasting to Cells from TextBox User Control | Excel Programming |