Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I created several functions that I re-use. I saved them in an addin along
with data on two worksheets. How do I edit the contents on the sorkwheets. When ever I open the addin, the worksheet is not present. Thanks in advance for your help. Guy Normandeau |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Addin worksheets are de-facto hidden, still there, but not visible. So you
can't edit in Excel, but you can in VBA Workbooks("myAddin".xla").Worksheets("data").Range ("A1").Value = "hello" -- HTH Bob Phillips (replace xxxx in the email address with gmail if mailing direct) "Guy Normandeau" wrote in message ... I created several functions that I re-use. I saved them in an addin along with data on two worksheets. How do I edit the contents on the sorkwheets. When ever I open the addin, the worksheet is not present. Thanks in advance for your help. Guy Normandeau |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Guy
From a Chip Pearson post.......... You can edit the XLA just like you can edit the XLS. For edits to VBA code, you can simply edit the VBA as normal. If you need to edit anything in a worksheet, simply change the IsAddIn property to False and the workbook and the worksheets will be visible. End Chip.................................. Gord Dibben MS Excel MVP On Tue, 20 Jun 2006 06:54:01 -0700, Guy Normandeau wrote: I created several functions that I re-use. I saved them in an addin along with data on two worksheets. How do I edit the contents on the sorkwheets. When ever I open the addin, the worksheet is not present. Thanks in advance for your help. Guy Normandeau |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Perfect!
This is exactly what I was looking for. Thanks Gord. "Gord Dibben" wrote: Guy From a Chip Pearson post.......... You can edit the XLA just like you can edit the XLS. For edits to VBA code, you can simply edit the VBA as normal. If you need to edit anything in a worksheet, simply change the IsAddIn property to False and the workbook and the worksheets will be visible. End Chip.................................. Gord Dibben MS Excel MVP On Tue, 20 Jun 2006 06:54:01 -0700, Guy Normandeau wrote: I created several functions that I re-use. I saved them in an addin along with data on two worksheets. How do I edit the contents on the sorkwheets. When ever I open the addin, the worksheet is not present. Thanks in advance for your help. Guy Normandeau |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Search a worksheet, extract rows using a list from another sheet | Excel Discussion (Misc queries) | |||
Comparing a list to a Calendar worksheet. | Excel Worksheet Functions | |||
Conversion of Cell Contents into a Functional Worksheet name ? | Excel Worksheet Functions | |||
Copy from worksheet to another x times | Excel Discussion (Misc queries) | |||
Worksheet name and Backward compatibility | Excel Discussion (Misc queries) |