Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 73
Default Cell Charecter Limit

Hi All,
By going thru this news group I find the maximum charecter limit for a
cell is 32768 and
only 1024 can be displayed.

I also noticed that when I try to print those charecters are not
printed too.

I am getting a textbox data to my cell A2. How cud I code to split the
data to A2 and A3 in case the charavcters are more than 1024?

Thanks

  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default Cell Charecter Limit


j = 1
k = 1

For i =1 to Len(FormString)

Range("A" & k).value = Range("A" & k).value & Mid(FormString,i,1)


If j = 1024 Then

j = 0

k = k + 1

end if

j = j + 1

next i


--
Kaak
------------------------------------------------------------------------
Kaak's Profile: http://www.excelforum.com/member.php...fo&userid=7513
View this thread: http://www.excelforum.com/showthread...hreadid=488660

  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 4,624
Default Cell Charecter Limit

One way:

Dim i As Long
For i = 0 To Int((Len(sText) - 1) / 1024)
Range("A1").Offset(i, 0).Value = _
Mid(sText, (i) * 1024 + 1, 1024)
Next i



In article .com,
"Soniya" wrote:

Hi All,
By going thru this news group I find the maximum charecter limit for a
cell is 32768 and
only 1024 can be displayed.

I also noticed that when I try to print those charecters are not
printed too.

I am getting a textbox data to my cell A2. How cud I code to split the
data to A2 and A3 in case the charavcters are more than 1024?

Thanks

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Extracting charecter from a string Trevor Aiston[_2_] Excel Worksheet Functions 3 November 26th 09 12:23 PM
Charecter set Suunto Excel Discussion (Misc queries) 3 January 16th 08 02:30 PM
charecter reapeat imh Charts and Charting in Excel 1 August 9th 06 06:35 PM
Nested IF limit or Open parentheses limit Fred Excel Discussion (Misc queries) 5 December 23rd 04 03:34 PM
Delete/Replace Newling Charecter from all cells. KM[_2_] Excel Programming 2 November 17th 03 10:06 PM


All times are GMT +1. The time now is 09:09 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"