Microsoft Access 2013 Level 2

Request info

Microsoft Access 2013 Training

 

Access 2013 Level 2 course outlines

Your training and experience using Microsoft Access 2013 has given you basic database management skills such as creating tables, designing forms and reports, and building queries. In this course, you will expand your knowledge of relational database design, write advanced queries, structure existing data, share data across applications, and customise reports.

Performance-Based Objectives

  • Design a relational database
  • Join tables to retrieve data from unrelated tables
  • Streamline data entry and maintain data integrity
  • Share data across applications
  • Customise reports to organise and format the displayed information

 

Course Content

 

Module 1: Designing a Relational Database

  • Topic A: Relational Database Design
  • Topic B: Create a Table
  • Topic C: Create Table Relationships

Module 2: Joining Tables

  • Topic A: Create Query Joins
  • Topic B: Join Tables That Have No Common Fields
  • Topic C: Relate Data within a Table
  • Topic D: Work with Subdatasheets
  • Topic E: Create Subqueries

Module 3: Organising a Database for Efficiency

  • Topic A: Data Normalisation
  • Topic B: Create a Junction Table
  • Topic C: Improve Table Structure

Module 4: Sharing Data Across Applications

  • Topic A: Import Data into Access
  • Topic B: Export Data to Text File Formats
  • Topic C: Export Access Data to Excel
  • Topic D: Create a Mail Merge

Module 5: Advanced Reporting

  • Topic A: Organise Report Information
  • Topic B: Format Reports
  • Topic C: Include Control Formatting in a Report
  • Topic D: Add a Calculated Field to a Report
  • Topic E: Add a Subreport to an Existing Report
SELECT wp_posts.*, wp_p2p.* FROM wp_posts INNER JOIN wp_postmeta ON ( wp_posts.ID = wp_postmeta.post_id ) INNER JOIN wp_p2p WHERE 1=1 AND ( ( wp_postmeta.meta_key = 'start_date' AND CAST(wp_postmeta.meta_value AS DATE) >= '2025-02-08' ) ) AND ((wp_posts.post_type = 'schedule' AND (wp_posts.post_status = 'publish' OR wp_posts.post_status = 'acf-disabled'))) AND (wp_p2p.p2p_type = 'schedule_to_courses' AND wp_posts.ID = wp_p2p.p2p_from AND wp_p2p.p2p_to IN (SELECT wp_posts.ID FROM wp_posts WHERE 1=1 AND wp_posts.ID IN (6369) AND ((wp_posts.post_type = 'courses' AND (wp_posts.post_status = 'publish' OR wp_posts.post_status = 'acf-disabled'))) ORDER BY wp_posts.post_date DESC )) GROUP BY wp_posts.ID ORDER BY CAST(wp_postmeta.meta_value AS DATE) ASC