16/06/2010, 09:01
|
| | Fecha de Ingreso: enero-2008
Mensajes: 366
Antigüedad: 17 años Puntos: 3 | |
Respuesta: más de 255 caracteres en una celda de excel Gracias por contestar.
Tengo el código asi:
Set objExcel = New Excel.Application
Set wbCupon = objExcel.Workbooks.Open(Archivo)
j=1
With objExcel.ActiveSheet
sTxt = .Cells(j, 1)
Do While sTxt <> ""
cadNFLl = cadNFLl & .Cells(j, 1).Value
j = j + 1
sTxt = .Cells(j, 1)
loop
.Cells(j, 1).Value = cadNFLl
End With |