![]() |
![]() |
|
|||||||
| Excel Questions All Excel/VBA questions - formulas, macros, pivot tables, general help, etc. Please post to this forum in English only. |
![]() |
|
|
Thread Tools | Display Modes |
|
|
#1 |
|
New Member
Join Date: Mar 2002
Location: Yuba City, Ca.
Posts: 16
|
I want the data,(numbers) from cell BA41 (of the old page) to go to cell BA37 (of a new page)every time I create a new page in my book. Thanks in advance.
|
|
|
|
|
|
#2 |
|
Board Regular
Join Date: Mar 2002
Location: London, UK
Posts: 167
|
try this (add it to the code of the workbook object... it will take the reference value and put it onto every sheet you add or any existing one that you select...
Private Sub Workbook_SheetActivate(ByVal Sh As Object) Sh.Range("ba37") = Sheets("source_sheet_name").Range("ba41") End Sub |
|
|
|
![]() |
| Bookmarks |
| Thread Tools | |
| Display Modes | |
|
|