Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() 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
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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 |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Extracting charecter from a string | Excel Worksheet Functions | |||
Charecter set | Excel Discussion (Misc queries) | |||
charecter reapeat | Charts and Charting in Excel | |||
Nested IF limit or Open parentheses limit | Excel Discussion (Misc queries) | |||
Delete/Replace Newling Charecter from all cells. | Excel Programming |