Re: 255 character limit
- From: "Tom Ogilvy" <twogilvy@xxxxxxx>
- Date: Thu, 23 Feb 2006 09:07:17 -0500
Dim sh as ***, bk as Workbook
Application.ScreenUpdating = False
set sh = Active***
set bk = workbooks.Open("C:\MyFolder\Book1.xls")
sh.Range("A1:Z1000").Value = _
bk.Worksheets("Sheet1").Range("A1:Z1000").Value
bk.Close SaveChanges:=False
Application.ScreenUpdating = True
Untested, but see if this is acceptable/works.
--
Regards,
Tom Ogilvy
"Noah" <Noah@xxxxxxxxxxxxxxxxxxxxxxxxx> wrote in message
news:9432946C-0C91-476F-9903-8D78290A235A@xxxxxxxxxxxxxxxx
I am using the macro1 to grab values from a closed workbook. Column ZIs
contains text cells, many of which have text strings of approximately 1000
characters...so I am running into problems with the 255 character limit.
there a way to modify the "Looper" macro atto
http://support.microsoft.com/kb/213841/ or some different macro in order
pull in the full text length of those cells in column z? Thanks! -Noah
Sub Macro1()
With Range("A1:Z1000")
.FormulaR1C1 = "='[Book1.xls]Sheet1!RC"
.Formula = Range("A1:Z1000").Value
End With
.
- Prev by Date: Re: count with a range
- Next by Date: Re: Excel hangs
- Previous by thread: Need selected item from listbox after double click
- Next by thread: Re: 255 character limit
- Index(es):