Problem in export data to Excel

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • PrakashN
    New Member
    • Sep 2007
    • 43

    Problem in export data to Excel

    I used excel to export data(Customer Name,Address). In form i used Multiline property 'Yes' for address. So it shows a small square box for each end of line in excel. how can avoid this square box..
  • QVeen72
    Recognized Expert Top Contributor
    • Oct 2006
    • 1445

    #2
    Hi,

    How you are Exporting to Excel, may be you can Replace the String and Export
    some thing like this :


    Excel.Cells(2,3 ).Value = Replace(RS("MyF ieldName"), vbCrLF,"")

    REgards
    Veena

    Comment

    • PrakashN
      New Member
      • Sep 2007
      • 43

      #3
      Originally posted by QVeen72
      Hi,

      How you are Exporting to Excel, may be you can Replace the String and Export
      some thing like this :


      Excel.Cells(2,3 ).Value = Replace(RS("MyF ieldName"), vbCrLF,"")

      REgards
      Veena
      It's working..
      thank you very much..

      Comment

      Working...