+ Reply to Thread
Results 1 to 2 of 2

Transfer data from Access table to Excelsheet

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    02-20-2009
    Location
    bristol
    MS-Off Ver
    Excel 2003
    Posts
    882

    Transfer data from Access table to Excelsheet

    Hi All

    I want to transfer the data from Access table to excelsheet in the form of letter and so I am writing the following code.
    Can anyone please tell me how to transfer the values to different excel cells? The query will always display one record or none. In the form there are few fields like policy number ,date and team. When the user fills all the information then related values of that records will display on the excelsheet in the form of letter and then that letter gets printed out.

     
    strsql = "Select PolicyNo,Address1,Address2,Address3,Address4,Postcode,Doc1,ODoc1,Doc2,ODoc2,Doc3,ODoc3,Doc4,ODoc4 from tblmaster where Date1 = # " & Format(DateSerial(ComboBox3, ComboBox2, ComboBox1), "mm/dd/yyyy") & " # and Team='" & ComboBox4.Value & "' and Surname='" & TextBox1.Value & "' and Initial='" & TextBox2.Value & "'"
       rs.Open strsql, cn
     
     Dim wb As Workbook
    Dim ws As Worksheet
    Set wb = ActiveWorkbook
        Set ws = ThisWorkbook.Worksheets("sheet1")
              ws.Cells(4, 3).Value = "How to display Address1 here"          
            ws.Cells(5, 3).Value = "How to display Address2 here"
              ws.Cells(6, 3).Value ="How to display Address3 here"
              ws.Cells(7, 3).Value ="How to display Address3here"
             ' ws.Cells(8, 3).Value = "How to display Postcode here"
               :
               :
               :
              ws.printout
    Thanks for any help.

    Aman

  2. #2
    Forum Contributor
    Join Date
    02-20-2009
    Location
    bristol
    MS-Off Ver
    Excel 2003
    Posts
    882

    Re: Transfer data from Access table to Excelsheet

    Can anyone please answer my question. Please guide me how can I display the data from Access table to Excelsheet in different cells in Letter format. Like :

    To <Customer Name>
    Address1
    Address2
    :
    :
    Postcode


    Thanks
    Aman

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1