View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
joel joel is offline
external usenet poster
 
Posts: 9,101
Default write all data from web import into single cell

Be careful of the limitation in excel. There is a 256 character limit in the
number of characters that you can see in the excel worksheet. Cell can
contain up to 64K of data. It is probabbly better that you import the data
and then combine the data if necessary. Is there a reason you want
everything in a single cell? Would it be better to export data to a text
file then combine the data into a single cell? How do you plan to use this
data?

"!!!" wrote:

hi,
it's this posible in excel/vba?
write all data from web import into single cell (concatenate all data and
write to a single cell)

Thank you