ms access - how to export query to Excel without truncating Memos to 255 chars? -


using access 2010. have query several memo fields in export excel sheet. every method have tried far has truncated memo fields:

  • export wizard
  • right-clicking on query , choosing export
  • exporting csv
  • docmd.transferspreadsheet
  • copy/pasting data open excel sheet

how can memo data in export, or @ least full 32767 characters excel cell can display?

adaam's suggestion helpful. ended doing following way:

  1. select query table.
  2. in design view, change relevant text fields memo fields, because select into automatically set them text.
  3. delete rows table.
  4. add rows query using insert into.
  5. import table contents excel range using range.copyfromrecordset. had table instead of directly query because had udfs in query.

Comments

Popular posts from this blog

linux - xterm copying to CLIPBOARD using copy-selection causes automatic updating of CLIPBOARD upon mouse selection -

c++ - qgraphicsview horizontal scrolling always has a vertical delta -