Microsoft Access VBA Tutorials for self-paced learning, Class Modules, SQL Techniques, and AI Integration Guides.

Microsoft Access Form Move Size Action

Microsoft Access Form Move Size Action.

We design Access Forms that fits into the existing Application Window Width (to display/edit records), or design popup Forms with specific size without borders or scroll bars (can be moved out of the Application Window area too) or Modal type form (popup type forms with its Modal property value set to True) that must be closed, after taking suggested action on it, before you can work with other forms.

This type of form opens one over the other (when more than one form is open) on the Application Window. You must enable Overlapping Windows by selecting Office Button --> Access Options --> Current Database --> Document Window Options --> Overlapping Windows to open the forms in this way; otherwise, they will be in the Tabbed style in the Application Window.

The Pop-Up Forms.

The pop-up forms will open at the exact location of the Application Window where you have saved it during design time. If you need more details on this topic, visit the Article Link: Positioning pop-up Forms.

We can open a Microsoft Access Form and move it to the Application Window's location in the resized state; if necessary, use the MoveSize Action on the DoCmd Object.

The MoveSize Action.

Here, we will learn the MoveSize Action of the DoCmd Object in VBA.

View the YouTube Demo Video given below for reference. Select the Settings 720p HD option for better quality viewing.

Demo Video

When the Supplier Code is selected on the Supplier List Form, the corresponding Product List is displayed above and to the right of the main Supplier Form. The width of the Product List Form remains unchanged, while its height adjusts dynamically based on the number of items displayed. 

We need two tables, two Queries, and the Supplier List Form from the Northwind sample database to build this trick. You need to design a Form for the Product List. A Demo Database Link is given at the end of this Article to download and try out right away.

The list of Tables, Queries, and Forms required to build this database is given below.

    Tables:

  • Suppliers
  • Products
  • Queries:

  • Suppliers Extended
  • ProductListQ
  • SQL Code:

    SELECT Products.[Supplier IDs], Right([Product Name],Len([product name])-17) AS Product, Products.[List Price], Products.[Quantity Per Unit]
    FROM Products
    WHERE (((Products.[Supplier IDs].Value)=[forms]![Supplier List]![id]));
    

    Forms:

  • Supplier List
  • Product List

Copy and Paste the following VBA Code into the Supplier List Form's VBA Module and save the Form:

Private Sub Company_Click()
Dim frm As Form, ProductForm As String, items As Integer
Dim mainFormHeight As Integer
Dim intHeader As Integer, intFooter As Integer
Dim intH As Integer, frmchild As Form, oneInchTwips As Integer

On Error GoTo Company_Click_Err

ProductForm = "Product List"
oneInchTwips = 1440 'Form's internal value conversion factor

mainFormHeight = Me.WindowHeight

For Each frm In Forms
  If frm.Name = ProductForm Then
    DoCmd.Close acForm, ProductForm
    Exit For
  End If
Next
DoCmd.OpenForm ProductForm
Forms(ProductForm).Refresh
items = DCount("*", "ProductListQ")

Set frmchild = Forms(ProductForm)
'Calc the required height of the chid-form
'based on number of items for selected supplier
intHeader = frmchild.Section(acHeader).Height
intFooter = frmchild.Section(acFooter).Height
'0.272 inch - product item row height
intH = intHeader + items * 0.272 * oneInchTwips + intFooter
intH = intH + oneInchTwips '- one inch margin from bottom
'Move and resize the height of the child form
'4.275 inches to the right from left of the Application Window
'1.25 inches - arbitrary value taken for bottom margin
DoCmd.MoveSize 4.275 * oneInchTwips, mainFormHeight - intH, , (items * 0.272 + 1.25) * oneInchTwips

Company_Click_Exit:
Exit Sub

Company_Click_Err:
MsgBox Err & ": " & Err.Description, , "Company_Click()"
Resume Company_Click_Exit

End Sub

Private Sub Form_Current()
Me.Refresh
End Sub

Note: Don't forget to change the Overlapping Windows option in the Access Options settings mentioned in paragraph two from the top.

  1. Open Supplier List Form.
  2. Click the Supplier ID Field (with the Company column heading) of any record to open the  Supplier Products List display in the Resized Product List Form, and move it to its specified location.

Download the Demo Database.


Download Demo MoveSize Demo.zip

Share:

PROPER Function of Excel in Microsoft Access

PROPER Function in Excel and Microsoft Access.

We have the UCase() Function in Access to convert all letters in a string to uppercase letters (UPPER() Function in Excel).

? UCase("LeARn mS-access Tips aNd tRicKs")

Result: LEARN MS-ACCESS TIPS AND TRICKS

LCase() Function (LOWER() in LCase ("LeARn ms-access Tips and tricks")

? LCase("LeARn mS-access Tips aNd tRicKs")

Result: learn ms-access tips and tricks

The Built-in Excel Function PROPER() formats the first letter of each Word in Capital letters and the rest of the word in lowercase letters. 

I don’t say there is no Function in Access to do that job, but its name is not PROPER.

Microsoft Access Function StrConv() can do what the PROPER() Function does in Excel.

Its usage is as given below:

? StrConv("LeARn mS-access Tips aNd tRicKs",3)

Result: Learn Ms-access Tips And Tricks

The STRCONV() Function.

The STRCONV() Function needs two parameters:

  1. The Text value to be converted
  2. The conversion type parameter is an integer value.

    Here, parameter value 3 is for Proper-case conversion.

I know what you will ask: can we do other conversions with this Function?

Yes, STRCONV(Text,1) for UCase() Function and STRCONV(Text,2) for LCase() Function

There are other uses for the STRCONV() function, with different parameters. If you are interested in exploring further, then type STRCONV in the search control of Microsoft Access Help Documents and get the details.

If you find using the uppercase function StrConv() complicated, we can define an Access equivalent of Excel’s PROPER() function.

Here is the VBA Code:

Public Function PROPER(ByVal strText As String) As String
PROPER = StrConv(strText, 3)
End Function

Copy and Paste the above VBA Code into a Global VBA Module of your Project. If you have a Library Database, copy and paste the code into it and save.

I will not be surprised if you name the function as PCase() in line with the other text conversion functions LCase() and UCase().

  1. Roundup Function of Excel in MS-Access
  2. Proper Function of Excel in Microsoft Access
  3. Appending Data from Excel to Access
  4. Writing Excel Data Directly into Access
  5. Printing MS-Access Report from Excel
  6. Copy-Paste Data From Excel to Access 2007
  7. Microsoft Excel Power in MS-Access
  8. Rounding Function MROUND of Excel
  9. MS-Access Live Data in Excel
  10. Access Live Data in Excel-2
  11. Opening Excel Database Directly
  12. Create Excel Word File from Access
Share:

RUNSQL Action in MACRO and VBA

RUNSQL Action in Macros and VBA.

Microsoft Access beginners are often confused about the difference between the RunSQL action in a Macro and the 'DoCmd.RunSQL' method in Visual Basic for Applications (VBA). Regardless of where it is used—in a macro or VBA—you must provide the SQL statement of an Action Query or a Data Definition Query. These are the only types of queries supported.

If you’re unsure which queries fall under these categories, refer to the following list:

Action Query Types.

Action Query Types
Query Type Statement
Append INSERT INTO
Delete DELETE
Make-Table SELECT ... INTO
Update UPDATE

Data Definition Queries.

Data-Definition Query Types
Query Type Statement
Create a table CREATE TABLE
Alter a table ALTER TABLE
Delete a table DROP TABLE
Create an Index CREATE INDEX
Delete an Index DROP INDEX

Using the SQL Statement of any other Query type in the RUNSQL Action will result in errors. In Macro, the length of an SQL statement is 256 characters or fewer.

The 'DoCmd.RunSql' method of VBA can execute an SQL statement with a maximum length of 32768 characters or less.

Note: You are not allowed to give an existing Query Name as a parameter to this command. But in VBA, you can load the SQL Statement of a predefined query into a String Variable and use it as the parameter to the DoCmd.RUNSQL command. 

Example-1:

Public Function DelRecs()
'Existing Delete Query’s SQL is used in this example
Dim db As Database, qryDef As QueryDef
Dim strSQL As String

'Read and save the SQL statement from 'Query48'
'and load into strSQL string variable
Set db = CurrentDb
Set qryDef = db.QueryDefs("Query48")
strSQL = qryDef.SQL

'Execute the SQL statement after
'disabling warning messages
DoCmd.SetWarnings False
DoCmd.RunSQL strSQL
DoCmd.SetWarnings True

'Using DoCmd.OpenQuery Command to run a Delete Query
DoCmd.SetWarnings False
DoCmd.OpenQuery "Query48", acViewNormal
DoCmd.SetWarnings True

End Function

The RunSQL action in a Macro allows you to modify or delete records across multiple records in one step. Before executing an Action Query, Microsoft Access displays a warning message appropriate to the action (such as update or delete) and waits for the user’s response to either proceed or cancel.

Once you have thoroughly tested the Action Query, you can instruct Microsoft Access to temporarily suppress warning messages during the RunSQL execution. After the query completes, you should re-enable the warning messages so that Access can continue to alert you about unexpected errors or issues as they occur.

The SetWarnings action in a Macro (or the DoCmd.SetWarnings method in VBA) is used to set or reset the System warning messages. This is particularly useful when data processing for a report involves one or more Action Query steps within a Macro.

In the Macro design example shown below, the first action is SetWarnings, with its parameter set to No, which suppresses the warning messages when the RunSQL executes the Action Queries in the next step. The third action is another SetWarnings, this time with its parameter set to Yes, which enables System warning messages. This ensures that Microsoft Access can once again handle and report any unexpected errors as they occur.


Example-2:

Create a Table with the Data-definition SQL

Warning: Double-check that you are not using any existing table name for this sample run.

Public Function DataDefQuery()
Dim strSQL As String

strSQL = "CREATE TABLE Books  (Title TEXT(50) NOT NULL, Author TEXT(50) NOT NULL, PublishDate DATE, Price CURRENCY)"

DoCmd.RunSQL strSQL

End Function

The OpenQuery Action in Macro and DoCmd.OpenQuery Method of VBA uses the name of a predefined Query (of any type) to open it in any of the following Views:

  • Design View
  • Datasheet View
  • Print Preview
  • Pivot Table
  • Pivot Chart
Share:

Hyperlink Opens Objects from Another Database

Hyperlink Opens Objects from Another Database.

Hyperlinks in Microsoft Access provide a convenient way to open internal or external objects without the need to write Macros or VBA code. The Hyperlink Address and Hyperlink SubAddress properties are available for Label Controls, Command Buttons, and Image controls.

We have already explored a few examples of using hyperlinks, and links to those articles are provided at the end of this page for reference.

If you haven’t experimented with these properties yet, let’s walk through a demo to understand how both properties can be used effectively.

The Sample Trial Run.

  1. Create a new Blank Form.
  2. Insert a Label control on the Form.
  3. While the label control is selected, display its Property Sheet (F4).

    Note: Hyperlink Address and Hyperlink SubAddress properties are used as follows:

    • Hyperlink Address: opens external objects, Word Documents, Excel Worksheets, PDF files, etc.
    • Hyperlink SubAddress: opens internal objects, Forms, Reports, Tables, Queries, and Macros.

    Let us open a Report from your database using the Hyperlink SubAddress property setting.

  4. Find the Hyperlink SubAddress property and write the following text into it:
    Report <Your Report Name>

    Replace <Your Report Name> text with one of your own report names (without the < > brackets). The correct format for writing a value to this property is <Object Type>, i.e., Form, Report, Table, Query, or Macro, followed by a space, followed by the actual object name.

  5. Change the Caption Property value of the Label to Open Report.
  6. Save the Form.
  7. Open the Form in Normal view, and click on the label control.

You will see how your report is open in Print Preview.

Open an Excel or Word File.

Now, try opening an MS Word Document using the other property, the Hyperlink Address setting.

  1. Open your Form and create a second Label control on it.

  2. Display the property sheet of the label control.

  3. Change the Caption property value to Open Word Doc.

  4. Set the Hyperlink Address property value to the full pathname of a Word Document on your computer, like C:\My Documents\Letter.doc 

  5. Save the Form with the changes.

  6. Open the Form in Normal View, and click on the second label to open the Document in MS Word.

Note: You can open Web pages by setting the Hyperlink Address property value to a web address, say https://www.msaccesstips.com

The Hyperlink Base.

If your external files, which you plan to open in Access, are all in one location, C:\My Documents\ then you don’t need to duplicate it in every control, but to specify the Path (C:\My Documents\) at one place: Hyperlink Base and only needs to write the document name (like Letter.doc or any other file on that location) in the Hyperlink Address property.

Let us try that:

  1. Click the Office Button and highlight the Manage option to display Database Options (Access 2007). In Access 2003 and earlier versions, you will find this option in the Tools Menu.

  2. Select Database Properties.

  3. Select the Summary Tab.

  4. Type C:\My Documents\ in the Hyperlink Base control (see the image above),  and click OK to save it.

  5. Open your Form and remove the C:\My Documents\ text entered for an earlier example, leaving the Letter.doc file name intact.

  6. Save the Form and click the label control to open the Word Document.

  7. You may try to open any other document you have in that location, with only the file name changed in the label.

Opening Objects from another Microsoft Access Database.

If you have followed me so far with the above sample exercises, then with a few changes, we can do it.

  1. First, remove the text from the Hyperlink Base control ('C:\My Documents\') and leave the control empty.

  2. Create another Label control on your Form.

  3. Change the Caption Property value to Ext. Database.

  4. Set the Hyperlink Address Property to your external database path, like C:\mdbs\myDatabase.accdb.

  5. Set the Hyperlink SubAddress property value to Report myReport. Change the report name to match yours.

  6. Save the Form with the change.

  7. Open the Form in Normal View, and click on the label control.

Your external database will open first and will show your report in print preview.

Note: If your database is secured, then it will prompt for User ID and Password. You may try opening other objects: Form, Query, Macro & Table.

Share:

Microsoft Access Tutorial Database

Microsoft Access Tutorial Database.

In Microsoft Access 2003 and earlier versions, the Northwind.mdb sample database was automatically installed along with the program. This database served as a valuable resource for beginners, providing a practical environment for experimenting and practicing the Microsoft Access features.

Users migrating from Microsoft Excel often face challenges when transitioning to Access. Many are accustomed to organizing data in worksheets and simple tables, but these lack the flexibility and power of a true database system. While Excel does provide basic database-like features—such as sorting, searching, and filtering—its capabilities are limited compared to Access. Exploring Excel’s Help documentation on database concepts can be a useful starting point for learning fundamental rules of database design and management. By applying these practices, users can structure their Excel data in ways that make it easier to link or import into Access in the future.

Starting with Microsoft Access 2007, however, the Northwind database was no longer installed by default. Instead, users can create it manually from the available sample templates. The Northwind template includes comprehensive examples and tutorial material, making it an excellent resource for learning and practicing database concepts in Access.

How to Create Northwind.accdb Database.

  1. Open Microsoft Access 2007

    On the New Database screen, you’ll see several database template categories listed on the left panel. By default, the Featuring category is selected. In the main window, the Blank Database template appears at the top, along with other templates designed for specific purposes.

  2. On the left panel, find the Sample Template category and select it.
  3. Click on the Northwind 2007 Template.

    The database will be saved in the active folder by default. You may change the folder by clicking on the folder icon to the right of the database file name.

  4. Click the Create Button to create the sample database in your preferred folder.

Always use the sample database as a reference point when working through issues related to table design, setting up relationships, creating queries, forms, reports, or macros. Try experimenting with Trial-and-error practices on the specific task you want to accomplish, using whatever knowledge and ideas you already have. This hands-on approach gives you deeper insight into the design process and, in most cases, helps you arrive at solutions on your own.

If you still cannot resolve the issue, the experience gained through trial and error will make it much easier to explain your problem clearly and seek help from other sources.

Access Users Forums.

You can search this Website for topics that you are interested in, or post your queries and get help from experts in Microsoft Access Users' Forums on the Internet. Links to some of the popular Forum Websites are given below:

  1. http://www.access-programmers.co.uk/forums/
  2. http://www.accessforums.net/#access-forums
  3. http://www.mrexcel.com/forum/microsoft-access/
Share:

Designing About Form for MS-Access Project

Designing the About Form for an MS Access Project.

This is all about the Microsoft Access About Form.

Once your Microsoft Access application development process is complete, you may design a small form called the About Form for your project. The About Form typically displays your project’s logo, name, version number, copyright information, and any other details you wish to include.

A sample About Form image of the Windows Live Writer Application is given below as an example:

Designing an Access About Form is straightforward. You will typically need:

  • Two Label controls to display the application name and the current version number.

  • A Textbox to show the copyright information.

  • An Image control (optional) to include your custom logo, giving your application a unique identity.

Designing a Simple Access About Form.

Let us design such a small About Form to know what it takes to create one with a simple Logo. Our sample About Form in design view is given below for reference.

I have designed a simple logo in MS Word, captured a screenshot of it, modified it in MS Paint, and saved it as a .bmp file.

  1. Open your Microsoft Access Application.

  2. Create a new Blank Form.

  3. Set the Width Property value of the Form to 3.93"

  4. Click on the Detail Section of the Form to select it.

  5. Set the Height property value to 1.53".

  6. Insert an Access Image control from the Toolbox on the left side of the Form and select the Project Logo image from your computer. You may select the Picture Property of the Image control and click the Build (...) button to browse and select the logo image from your computer, if you wish to change the image later.

    The Image Properties.

  7. Change the Image property values as given below:

    • Picture Tiling: No

    • Size Mode: Zoom

    • Picture Alignment: Center

    • Picture type: Embedded

  8. MS Access Label & Text Controls.

  9. Insert a Label control to the Logo's right and the Form's top position, and resize it wide enough to write the Application name in bold letters.

  10. Write the Project Name in the Caption Property, and set the Text Font size to your liking, make it bold, and align the text to the center.

  11. Create another Label control below the first one, with the same width as the first label. Write the Version number of your Project, make it bold, and centralize the text.

  12. Insert a Textbox below the earlier labels, and with the same width.

  13. Copy and paste the following expression into the Control Source property of the textbox. ="Copyright " & Chr$(169) & Year(Date()) & " All Rights Reserved".

  14. Change the TextBox Property values as given below:

    • Border Style: Transparent

    • Text Align: Center

    • Enabled: No

    • Locked: Yes

    • Tab Stop: No


    MS-Access Command Button.

  15. Create a Command Button below the TextBox and position it centralized.

  16. Make the following changes to the Command Button:

    • Change the Name property value to cmdOK.

    • Change the Caption property value to OK.

    • Click on the Event Tab of the property sheet.

    • Select the On Click property and select [Event Procedure] from the drop-down list.

    • Click on the Build (...) button to open the VBA Module with the empty procedure start and end lines.

    • Copy the middle line of code given below and paste it in the middle of the Subroutine Stub. Or copy all three lines and paste them, overwriting the existing lines in the VBA Module.

    • Private Sub cmdOK_Click()
      DoCmd.Close
      End Sub
      

      The Command Button Click closes the About Form.

  17. Save the Form and rename it as About or frmAbout.

  18. Open the About Form in Normal View and see how it looks on the Access Application Window.

    The Property Value Changes.

    As you can see, the Access About Form needs some changes to make its appearance like a real About Form. Let us do that to give it the final touches.

  19. Make the following changes in the Form's Property Values as shown below:

    • Caption: About <your Project name here>

    • Pop Up: Yes

    • Modal: Yes

    • Default View: Form View

    • Allow Form View: Yes

    • Auto Center: Yes

    • Auto Resize: Yes

    • Fit to Screen: No

    • Border Style: Dialog

    • Record Selectors: No

    • Navigation Buttons: No

    • Dividing Lines: No

    • Scroll Bars: Neither

    • Control Box: Yes

    • Close Button: No

    • Min Max Button: None

  20. Save the Form after the above changes.

    View The Application About Form in Normal View.

  21. Open the About form in Normal View.

    A sample Image of the completed About Form in Normal View is given below.

You must add an Option to the Customized Menu of your Project to enable the User to open the Access Application About Form. Alternatively, you may add a Command Button on the Main Form of your Project to do that.

Share:

Appending Data from Excel to Access

Appending Data from Excel to Access.

Last week, we tried out an interesting method of writing a range of Excel data directly into a Microsoft Access Table. Each row of data is transferred to the table as a single record. If you haven't come across that article, then you may find it here.

This is an equally interesting method.  The selected Worksheet contents are appended to the Access Table with its specified columns in the SQL.

A sample image of the Worksheet data is given below:


The VBA Code

Private Sub CommandButton1_Click()
On Error GoTo CommandButton1_Click_Error
'Create Database connection Object
Set cn = CreateObject("ADODB.Connection")
'Access Database must be in the same location of the Worksheet 
dbpath = Application.ActiveWorkbook.Path & "\Database4XL.accdb"
'Get Workbook Full Pathname
dbWb = Application.ActiveWorkbook.FullName
'Get Active worksheet name
dbWs = Application.ActiveSheet.Name
'Create Data Target Connection string to open a session for data transfer
scn = "Provider=Microsoft.ACE.OLEDB.12.0;Data Source=" & dbpath
'Datasheet name to add at the end of the Workbook Name, to complete the
'FROM clause of the SQL String.
dsh = "[" & dbWs & "$]"
'Open session
cn.Open scn

'Append Query SQL String
ssql = "INSERT INTO Table1 ([Desc], [Qrtr1], [Qrtr2], [Qrtr3], [Qrtr4]) "
ssql = ssql & "SELECT * FROM [Excel 8.0;HDR=YES;DATABASE=" & dbWb & "]." & dsh

'Run SQL
cn.Execute ssql

MsgBox "Data Added to " & dbpath & " Successfully."

CommandButton1_Click_Exit:
Exit Sub

CommandButton1_Click_Error:
MsgBox Err & " : " & Err.Description, , "CommandButton1_Click()"
Resume CommandButton1_Click_Exit

End Sub

Courtesy:
The above VBA code was taken from a Forum Post on www.mrexcel.com/Forum and modified to run on the same sample data presented in the earlier article published last week.

The CommandButton1 Click Event Procedure is run from the Excel Worksheet VBA Module.

  1. Roundup Function of Excel in MS-Access
  2. Proper Function of Excel in Microsoft Access
  3. Appending Data from Excel to Access
  4. Writing Excel Data Directly into Access
  5. Printing MS-Access Report from Excel
  6. Copy-Paste Data From Excel to Access 2007
  7. Microsoft Excel-Power in MS-Access
  8. Rounding Function MROUND of Excel
  9. MS-Access Live Data in Excel
  10. Access Live Data in Excel- 2
  11. Opening an Excel Database Directly
  12. Create an Excel Word File from Access
Share:

Writing Excel Data directly into Access Table

Writing Excel Data directly into an Access Table.

Microsoft Access allows you to import data from external sources such as dBase, FoxPro, Excel, or even another Access database. Likewise, you can also export data from Access to these applications, making data exchange and integration seamless.

Following is a list of topics I have published earlier, either on importing, exporting, or working with external data sources from Microsoft Access:

Today, we will explore how to add a range of Excel cell data directly into an Access Table by running the VBA Code from within Excel.

The Algorithm of the program is as given below:

  1. Create an Access Application Object and open it.

  2. Open the target database within the Access Application.

  3. Keep the Access Application window hidden.

  4. Open the target table from the Database.

  5. Count the rows in one of the Excel data columns.

  6. Open a loop to write the Excel data one row at a time, starting from the second row onward.

  7. Repeat the writing action till all the rows are transferred to the Access Table.

  8. Close the table and the database and quit the MS Access Application.

The Excel VBA Code is run by clicking a Command Button on the Excel Sheet. A sample image of the Excel Sheet with data and a Command Button is given below:

The Target Table Structure image is given below:


The Excel VBA Code

Sub Button1_Click()
    Dim objAcc As Object
    Dim recSet As Object
    Dim DataRow As Long, EndRow As Long
    
    On Error GoTo Button1_Click_Err
    
    'Create Access Application Object
    Set objAcc = CreateObject("Access.Application")
    'Open Database in Microsoft Access window
    objAcc.OpenCurrentDatabase "F:\mdbs\Database4XL.accdb", True
    'Keep Access application window hidden
    objAcc.Visible = False
    
    'Open Access Table to add records from Excel
    Set recSet = objAcc.CurrentDb.OpenRecordset("Table1")
    'Take actual row counts of data for transfer
    EndRow = Sheet1.Range("A" & Rows.Count).End(xlUp).Row

    With recSet
      For DataRow = 2 To EndRow
        .AddNew
        ![Desc] = Sheet1.Range("A" & DataRow).Value
        ![Qrtr1] = Sheet1.Cells.Range("B" & DataRow).Value
        ![Qrtr2] = Sheet1.Cells.Range("C" & DataRow).Value
        ![Qrtr3] = Sheet1.Cells.Range("D" & DataRow).Value
        ![Qrtr4] = Sheet1.Cells.Range("E" & DataRow).Value
        .Update
      Next
    End With
    recSet.Close
    objAcc.Quit
    Set objAcc = Nothing

Button1_Click_Exit:
Exit Sub

Button1_Click_Err:
MsgBox Err & " : " & Err.Description, , "Button1_Click()"
Resume Button1_Click_Exit
    
End Sub
Courtesy:
The non-functional raw VBA Code presented by a User at the Excel Forums www.mrexcel.com/forum/microsoft-access was modified by me to make it functional and was originally submitted there.

The first field of the table is an ID field with the data type AutoNumber. The ID field value is automatically generated when data is inserted into the other fields.

  1. Roundup Function of Excel in MS-Access
  2. Proper Function of Excel in Microsoft Access
  3. Appending Data from Excel to Access
  4. Writing Excel Data Directly into Access
  5. Printing MS-Access Report from Excel
  6. Copy-Paste Data From Excel to Access 2007
  7. Microsoft Excel Power in MS-Access
  8. Rounding Function MROUND of Excel
  9. MS-Access Live Data in Excel
  10. Access Live Data in Excel- 2
  11. Opening an Excel Database Directly
  12. Create an Excel Word File from Access

Share:

Legacy Custom Menus Toolbars in Access2007

Legacy Custom Menus Toolbars in Access2007.

Custom Menu of Access 2003 in Access 2007.

You may have invested considerable time designing custom menus and toolbars in your MDB database. However, after upgrading to Microsoft Access 2007 and opening your database with the new version, you might notice that the customized menus and toolbars have disappeared.

The Add-In Menu.

Your custom menus and toolbars are not lost—they are still available. In Microsoft Access 2007, they are stored under the Add-Ins tab. Simply click the Add-Ins tab on the Ribbon to find all your custom menus and toolbars there. Refer to the sample image below for guidance.

Have you noticed the group name Custom Toolbars appearing at the bottom of the Add-in Menu?

But the Access 2007 Menu Bars also appear at the top.  You want to turn off the default Access 2007 Menus and Toolbars from the top and replace them with your Custom Menus and Toolbars.


Access Option Changes.

Do the following to get that done:

  1. Click the Office Button (Top-left corner).
  2. Select Access Options.
  3. Select the Current Database.
  4. Move the scroll bar down to find the Ribbon and Toolbar Options as shown in the image given above.
  5. Select your Custom Menu Bar name from the drop-down list, replacing the text (Default).
  6. Select your Shortcut Menu Bar name from the drop-down list, replacing the text (Default).
  7. Remove the check marks from the next three options:
    • Allow Full Menus.
    • Allow Default Shortcut Menu.
    • Allow Built-in Toolbars.
  8. Click OK to save changes to Access Options.

  9. One more step to go:

  10. Close the database and reopen it to register the changes.

Now that the Menu Bars and Tool Bars are in complete control of your Application, they will look like the image given above.

To restore Access 2007 Menus and Toolbars, open the MDB file by holding the Shift key to prevent Auto-Macro from running and to get control of the database window.  Go through Steps 1 to 9 and reverse what you did earlier.

Share:

Sub-Report Summary Value in Main Report Calculations

Sub-Report Summary Value in Main Report Calculations.

How to bring the sub-report summary value to the main report and use it in calculations?

But first, we need a ready-made report for our project.

Download links for the sample database are provided below. Choose the version you need. The demo database is created in Microsoft Access 2007 format and is fully compatible with later versions.

First, take a look at the following images:

  1. Print Preview of the finished report.
  2. Original Report Preview. 
  3. Changes were made to the Report in Design View to get the result shown in the first image above.


    Download Links.

  4. Sample Database Download Links for Microsoft Access 2007 and 2003 Versions are given below.


  5. Download the suitable sample database.

    In short, our task is to add the sub-report category total to the Footer Section of the Sales by Category sub-report. Get the summary value of each category for the main report header.  Calculate the percentage of each category of product sales value on Grand-Total Sales Value (or Percentage = Category Sales Value / Total Sales value of all Categories * 100).  We can do this by adding a few text boxes to both reports and writing a few expressions in them.

    The Sub-Report Changes.

    Let us start with the Sales by Category Sub-report first.

  1. Open the downloaded database.

  2. Open Sales by Category Sub-report in Design View.

  3. Right-click on the Report Footer bar and select Properties to display the Property Sheet.

  4. Select the Height Property and change the property value to 0.33” or 0.838 cm.

  5. Select the Text Tool from the Toolbar above and draw a text box on the Report Footer area below the Product Sales column.

  6. Write the expression =Sum([ProductSales]) in the Control Source property of the text box. Change the Name property value to SubTotal.

  7. Modify the Caption property value of the child label to read as Sub-Total.

  8. Save and close the Sales by Category Subreport.

    The Main Report Changes.

  9. Open the Sales by Category main report in Design View.

  10. Create a TextBox on the Header Section of the Report, to the right of the report heading.

  11. While the text box is in selected state, display the property sheet (F4).

  12. Write the expression =Sum([ProductSales]) in the Control Source property. Change the Name property value to TotalSales. Change the Caption property of the child label to Total Sales.

    Note: The expression calculates the total product sales value across all categories on the main report. When used in the sub-report, however, the same expression calculates the sales value of the current product category (for example: Beverages). This gives us two values: the SubTotal for a specific category in the sub-report, and the TotalSales for all categories in the main report.

    With these values, we can calculate the percentage contribution of a particular category using the formula:

    Percentage=SubTotalTotalSales×100\text{Percentage} = \frac{\text{SubTotal}}{\text{TotalSales}} \times 100

    However, since SubTotal is calculated in the sub-report, it cannot be referenced in the parent (main) report. To use it in the main report—especially when there are multiple sub-reports—we must explicitly specify the location of the control or expression within the sub-report.

  13. Create a text box below the Category Header bar to the right of the Category Name heading, and relocate the TextBox under the Total Sales calculation control on the Report Header.

  14. Right-click on the Control Source Property of the text box and select the Build option from the displayed list to open the expression builder control.

    • Click on the = symbol to insert it into the expression editor window.

    • Double-click on the + symbol on the left side of the Reports option to expand and show other options.

    • Double-click on Loaded Reports.

    • Double-click on the Sales by Category main report to display the Sub-Report's name.

    • Click on Sales by Category Subreport to display its control names in the next column.

    • Find the Subtotal control in the list and double-click on it.

      The reference to the SubTotal control in the subreport can be written as:

      [Sales by Category Subreport].[Report]![SubTotal]

      This reference can be inserted directly using the Expression Builder. Alternatively, if you already understand how to write the reference correctly, you can type it directly into the Control Source property without going through the Expression Builder.

      With practice and by studying Microsoft Access’s addressing conventions, you will quickly become comfortable writing these references manually for use in Reports or Forms.

    • Click Ok to return to the TextBox Control Source property, with the Subtotal Reference, and write the rest of the expression to calculate the percentage.

    • Type /[TotalSales] at the end of the subtotal reference. Have you noticed the slash on the left side of the expression snippet?

    • Select Percent from the Format Property drop-down list. With these settings, we don’t have to write the *100 part in the expression.

    • Change the Caption of the child label to Category %. Change the TextBox and Child label Font Size to 12 points and Font weight Bold.

    Report Sample Print Preview

    Our Report is almost finished, but we need a little more change, and that comes next after we preview the progress of our work so far

  15. Save the changes we have made to the Report, and open it in Print Preview to see how the changes appear on the Report.

    The Report should look like the image below.

  16. Move the Report to the next page.

    The Total Sales value of the Report Header Section is not appearing on the second page.

    By default, the Report Header section prints only on the first page of the report, and the Report Footer section prints only on the last page. This means that any headings or calculations placed in the Report Header will not appear on subsequent pages.

    However, we often want the report heading and certain calculated values to appear on every page. Content placed in the Page Header section is repeated across all pages, making it the ideal place for such information.

    The challenge is that aggregate functions Sum(), Count (), and similar expressions do not work in the Page Header section. For example, we cannot place a SUM() calculation there. But we do want the calculated result from the Total Sales control (defined in the Report Footer or another valid section) to appear consistently at the top of every page.

    To achieve this, we make the following adjustments:

    Move the report heading from the Report Header to the Page Header, so it prints on every page.

    Reference the Total Sales control (which performs the calculation in a valid section, such as the Report Footer) from within the Page Header. By pointing to the existing Total Sales control, its value can be displayed in the Page Header even though aggregate functions cannot be calculated there directly.

    With this approach, both the heading and the calculated Total Sales value will appear consistently on every page of the report.

    The Final Changes.

    • Open the report in design view.

    • Drag the Category Name header bar down to get enough space for the Page Header Section, then cut and paste the Report Heading there.

    • Highlight the report heading and the report date controls (leave the Total Sales textbox alone), cut, and paste into the Page Header Section.

    • Select the Total Sales text box, copy and paste it into the Page Header Section, and move the position below the text control on the Report Header Section.

    • Write the expression = [TotalSales] (the Name of the Total Sales calculation text box on the header section) in the Control Source property (overwriting the existing expression) of the copied text box.

      This will display the value of the Header Section text box, where the Total Sales value is calculated.  

    • Select the Header Section text control and the child label and set their Visible property to No to keep it hidden when the report is previewed or printed.

    • Save the report with the changes.

      Print Preview the Report.

    • Open the Sales by Category report in Print Preview, move the pages forward, and check the headings and category percentage values.

  17. Next time you want to do something like this, you can do it in a few minutes.

Share:

PRESENTATION: ACCESS USER GROUPS (EUROPE)

Translate

PageRank

Post Feed


Search

Popular Posts

Blog Archive

Powered by Blogger.

Labels

Forms Functions How Tos MS-Access Security Reports msaccess forms Animations msaccess animation Utilities msaccess controls Access and Internet MS-Access Scurity MS-Access and Internet External Links Queries Array Class Module msaccess reports Accesstips msaccess tips WithEvents Downloads Objects Menus and Toolbars MsaccessLinks Process Controls Art Work Collection Object Property msaccess How Tos Combo Boxes ListView Control Query VBA msaccessQuery Calculation Dictionary Object Event Graph Charts ImageList Control List Boxes TreeView Control Command Buttons Controls Data Emails and Alerts Form Custom Functions Custom Wizards DOS Commands Data Type Key Object Reference ms-access functions msaccess functions msaccess graphs msaccess reporttricks Command Button Report msaccess menus msaccessprocess security advanced Access Security Add Auto-Number Field Type Form Instances ImageList Item Macros Menus Nodes Recordset Top Values Variables msaccess email progressmeter Access2007 Copy Excel Expression Fields Join Methods Microsoft Numbering System RaiseEvent Records Security Split SubForm Table Tables Time Difference Utility WScript Workgroup Wrapper Classes database function msaccess wizards tutorial Access Emails and Alerts Access Fields Access How Tos Access Mail Merge Access2003 Accounting Year Action Animation Attachment Binary Numbers Bookmarks Budgeting ChDir Color Palette Common Controls Conditional Formatting Data Filtering Database Records Defining Pages Desktop Shortcuts Diagram Disk Dynamic Lookup Error Handler Export External Filter Formatting Groups Hexadecimal Numbers Import Labels List Logo Macro Mail Merge Main Form Memo Message Box Monitoring Octal Numbers Operating System Paste Primary-Key Product Rank Reading Remove Rich Text Sequence SetFocus Summary Tab-Page Union Query User Users Water-Mark Word automatically commands hyperlinks iSeries Date iif ms-access msaccess msaccess alerts pdf files reference restore switch text toolbar updating upload vba code