Advertisement

07.21.2008 at 07:55AM PDT, ID: 23582042
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

8.6

Export Access to Excel using VBA

Asked by pbowker in Access Coding/Macros, Microsoft Access Database, Microsoft Excel Spreadsheet Software

I have VBA code that exports a table to Excel, creating separate workbooks for each group.  I also want to add totals and place them in the next available row.  Can someone assist.  I setup accumulators, but have problems on where to place the formula.  I either get only the first record or a large multiple of the number.  I've attached the original code without the totals.  I'm trying to total AverageMarketValue
I set a field called TotalMV, first set it to 0 and then added a formula TotalMV = TotalMV + rs!AverageMarketValue.  I need to know where to put the formulas and also how to count the rows to add it at the correct spot.
Thanks.Start Free Trial
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
Function SubTA()
Dim rs As DAO.Recordset, rsDir As DAO.Recordset
 
Dim ssql As String, iCol
Dim xlObj As Object
Dim Sheet As Object
Dim db As Database
Dim lngColumns As Long
Dim strLastColumn As String
Dim cntColumns As Long
Dim cntRows As Long
 
Set rsDir = CurrentDb.OpenRecordset("select distinct FUNDFAMNAM from SubTABilling")
 
If rsDir.EOF Then Exit Function
rsDir.MoveFirst
 
 
Do Until rsDir.EOF
    Set xlObj = CreateObject("Excel.Application")
    xlObj.Workbooks.Add
 
 
    ssql = "SELECT SubTABilling.FUNDFAMNAM, SubTABilling.FundName, SubTABilling.[Plan Name], "
    ssql = ssql & " SubTABilling.PLANID, SubTABilling.Ticker, SubTABilling.Cusip, SubTABilling.[Fund Acct #], "
    ssql = ssql & " SubTABilling.[AverageMarketValue], SubTABilling.[# Part], SubTABilling.BPS, SubTABilling.[Part Fee], "
    ssql = ssql & " SubTABilling.[Quarterly Asset Fee], SubTABilling.[Quarterly Part Fee], SubTABilling.[Total Fee] "
    ssql = ssql & " FROM SubTABilling WHERE SubTABilling.FUNDFAMNAM='" & rsDir("FundFamNam") & "'"
 
 
    
     Set rs = CurrentDb.OpenRecordset(ssql)
 
   
    Set Sheet = xlObj.ActiveWorkbook.Sheets("sheet1")
    'rename the sheet, you can use any of the recordset field
    'Sheet.Name = rsDir("FundFamNam")
    'copy the headers
        For iCol = 0 To rs.Fields.Count - 1
            Sheet.Cells(10, iCol + 1).Value = rs.Fields(iCol).Name
        Next
   
   
    Sheet.Range("A11").CopyFromRecordset rs  'copy the data
    'xlObj.Visible = True
    xlObj.ActiveWorkbook.SaveAs "L:\Revenue Sharing\SubTA\" & rsDir("FUNDFAMNAM") & ".xls"
 
   
    Set Sheet = Nothing
    xlObj.Quit
    Set xlObj = Nothing
rsDir.MoveNext
Loop
rsDir.Close
rs.Close
Set rsDir = Nothing
Set rs = Nothing
End Function
[+][-]07.21.2008 at 12:25PM PDT, ID: 22053559

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]07.21.2008 at 12:38PM PDT, ID: 22053657

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]07.21.2008 at 12:54PM PDT, ID: 22053753

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]07.21.2008 at 01:18PM PDT, ID: 22053936

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]07.21.2008 at 01:44PM PDT, ID: 22054183

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]07.21.2008 at 02:04PM PDT, ID: 22054336

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]07.21.2008 at 07:13PM PDT, ID: 22056069

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]07.22.2008 at 10:07AM PDT, ID: 22061425

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]07.22.2008 at 09:46PM PDT, ID: 22066075

Experts Exchange has a courteous staff of administrators who help members get the most out of the website by means of administrative comments like this one.

Start your 7-day free trial to view this Administrative Comment or ask the Experts your question.

 
[+][-]07.23.2008 at 08:05AM PDT, ID: 22070054

View this solution now by starting your 7-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zones: Access Coding/Macros, Microsoft Access Database, Microsoft Excel Spreadsheet Software
Sign Up Now!
Solution Provided By: jmoss111
Participating Experts: 2
Solution Grade: A
 
 
[+][-]07.23.2008 at 08:08AM PDT, ID: 22070075

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
 
Loading Advertisement...
20080716-EE-VQP-32 / EE_QW_2_20070628