Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
The following macro will create a value in cell A2 that has more than
32k characters. Sub foo() Range("A1").Value = String$(2 ^ 15 - 1, "a") Range("A2").Formula = "=Substitute(A1, ""a"", ""ab"")" Range("A3").Formula = "=len(A2)" End Sub If you now save this workbook, it will not be openable by excel. We discovered this behavior quite by accident when replacing the tab character in a cell with spaces. Unfortunately, the cell contained a large text fragment, and when expanded it was 32k chars. Because the workbook is fine until it is saved and reopened, and because the worksheet had nearly 1 million cells, it took a while to track down. Are there other ways to make seemingly valid workbooks that cannot be opened? |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
In Excel 2003 I do get a message on opening "Data may be lost", but it opens and A3 is 65534
-- Kind regards, Niek Otten Microsoft MVP - Excel "Alok" wrote in message ... | The following macro will create a value in cell A2 that has more than | 32k characters. | | Sub foo() | Range("A1").Value = String$(2 ^ 15 - 1, "a") | Range("A2").Formula = "=Substitute(A1, ""a"", ""ab"")" | Range("A3").Formula = "=len(A2)" | End Sub | | If you now save this workbook, it will not be openable by excel. We | discovered this behavior quite by accident when replacing the tab | character in a cell with spaces. Unfortunately, the cell contained a | large text fragment, and when expanded it was 32k chars. Because the | workbook is fine until it is saved and reopened, and because the | worksheet had nearly 1 million cells, it took a while to track down. | Are there other ways to make seemingly valid workbooks that cannot be | opened? |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Very interesting!!!
It opens fine for me in Excel 2000 (SP-3). -- Regards, Bill Renaud |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Cell A3 is 32767.
-- Regards, Bill Renaud |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
On Dec 5, 11:28 am, "Niek Otten" wrote:
In Excel 2003 I do get a message on opening "Data may be lost", but it opens and A3 is 65534 -- Kind regards, Niek Otten Microsoft MVP - Excel "Alok" wrote in ... | The following macro will create a value in cell A2 that has more than | 32k characters. | | Sub foo() | Range("A1").Value = String$(2 ^ 15 - 1, "a") | Range("A2").Formula = "=Substitute(A1, ""a"", ""ab"")" | Range("A3").Formula = "=len(A2)" | End Sub | | If you now save this workbook, it will not be openable by excel. We | discovered this behavior quite by accident when replacing the tab | character in a cell with spaces. Unfortunately, the cell contained a | large text fragment, and when expanded it was 32k chars. Because the | workbook is fine until it is saved and reopened, and because the | worksheet had nearly 1 million cells, it took a while to track down. | Are there other ways to make seemingly valid workbooks that cannot be | opened? Ah! I ran windows update, and it was able to open it. Apparently, one of the updates fixed it. Thanks for pointing this out! |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
how to substitute a value for calculation with a column of values | Excel Worksheet Functions | |||
message 'hyperlink can be harmful warning..etc...' | Excel Discussion (Misc queries) | |||
what is used for cell entries that are considered subsections of . | Excel Discussion (Misc queries) | |||
Substitute worksheet function | Excel Programming | |||
Using a function from a vba add-in: is that considered an external link | Excel Programming |