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
Bookmarks