SlideShare a Scribd company logo
1
Access 2016 Module 2
Building and Using Queries
2
• Use the Query Wizard
• Work with data in a query
• Use Query Design View
• Sort and find data
• Filter data
• Apply AND criteria
• Apply OR criteria
• Format a datasheet
Module Objectives
© 2017 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part, except for use as permitted in a license distributed with a certain product or service or otherwise on a
password-protected website for classroom use.
3
• A query allows you to select a subset of fields and records from one or more
tables and then present the selected data as a single datasheet
• Because a query doesn’t physically store the data, a query datasheet is
sometimes called a logical view of the data
• A query stores a set of SQL (Structured Query Language) commands
• Query Design View is an Access tool for writing queries without using SQL
Use the Query Wizard (Slide 1 of 2)
© 2017 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part, except for use as permitted in a license distributed with a certain product or service or otherwise on a
password-protected website for classroom use.
4
Simple Query Wizard
Use the Query Wizard (Slide 2 of 2)
© 2017 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part, except for use as permitted in a license distributed with a certain product or service or otherwise on a
password-protected website for classroom use.
5
• You enter and edit data in a query datasheet the same way you do in a table
datasheet
• Any edits you make in a query datasheet are permanently stored in the
underlying tables, and are automatically updated in all views of the data in
other queries, forms, and reports
Work with Data in a Query (Slide 1 of 2)
© 2017 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part, except for use as permitted in a license distributed with a certain product or service or otherwise on a
password-protected website for classroom use.
6
Working with data in a query datasheet
Work with Data in a Query (Slide 2 of 2)
© 2017 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part, except for use as permitted in a license distributed with a certain product or service or otherwise on a
password-protected website for classroom use.
Updating
Stanley to
Captiva in
one record
updates all
records
7
• Use Query Design View to:
• Add, delete, or move the fields in an existing query, to specify sort orders, or to add
criteria to limit the number of records shown in the resulting datasheet
• Create a new query from scratch
• Query Design View presents the fields you can use for that query in small
windows called field lists
• If you use the fields of two or more related tables in the query, the relationship
between two tables is displayed with a join or link line identifying which fields
are used to establish the relationship
Use Query Design View (Slide 1 of 2)
© 2017 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part, except for use as permitted in a license distributed with a certain product or service or otherwise on a
password-protected website for classroom use.
8
Query in Design View
Use Query Design View (Slide 2 of 2)
© 2017 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part, except for use as permitted in a license distributed with a certain product or service or otherwise on a
password-protected website for classroom use.
9
• The Access sort and find features are tools that help you quickly organize and
find data in a table or query datasheet.
• Data can be sorted by clicking the list arrow on a datasheet’s column heading,
then click a sorting option
Sort and Find Data (Slide 1 of 4)
© 2017 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part, except for use as permitted in a license distributed with a certain product or service or otherwise on a
password-protected website for classroom use.
10
Sort and Find Data (Slide 2 of 4)
© 2017 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part, except for use as permitted in a license distributed with a certain product or service or otherwise on a
password-protected website for classroom use.
Changing sort orders for a query
11
Find and Replace dialog box
Sort and Find Data (Slide 3 of 4)
© 2017 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part, except for use as permitted in a license distributed with a certain product or service or otherwise on a
password-protected website for classroom use.
12
Sort and Find buttons
Sort and Find Data (Slide 4 of 4)
© 2017 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part, except for use as permitted in a license distributed with a certain product or service or otherwise on a
password-protected website for classroom use.
13
• Filtering provides a temporary way to display a subset of records that match
given criteria
• Filters are not used to calculate sums, averages, counts, etc.
• Filters are removed when the datasheet is closed
• Filters can be saved as queries
• Filter By Selection: Filtering by a given field value. Filters records for an exact
match.
• Filter By Form: Filters by comparative data
Filter Data (Slide 1 of 4)
© 2017 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part, except for use as permitted in a license distributed with a certain product or service or otherwise on a
password-protected website for classroom use.
14
• Wildcards
• Used to search for a pattern; represents any character
• Entered as criteria
• ? Used to search for a single character
• * Used to search for any number of characters
• Often used with LIKE operator
Filter Data (Slide 2 of 4)
© 2017 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part, except for use as permitted in a license distributed with a certain product or service or otherwise on a
password-protected website for classroom use.
15
Filters vs. queries
Filter Data (Slide 3 of 4)
© 2017 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part, except for use as permitted in a license distributed with a certain product or service or otherwise on a
password-protected website for classroom use.
16
Filter buttons
Filter Data (Slide 4 of 4)
© 2017 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part, except for use as permitted in a license distributed with a certain product or service or otherwise on a
password-protected website for classroom use.
17
• Criteria are tests or limiting conditions which restrict retrieval
• AND criteria means all criteria must be true for the record to be selected
• Created by entering two or more criteria in the same Criteria row of the query
design grid
• Criteria Syntax
• Quotation marks (“) around text criteria and pound signs (#) around date criteria are
automatically added by Access
• Criteria in Number, Currency, and Yes/No fields are not surrounded by any characters
Apply AND Criteria (Slide 1 of 4)
© 2017 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part, except for use as permitted in a license distributed with a certain product or service or otherwise on a
password-protected website for classroom use.
18
• Searching for blank fields
• Is Null – Finds all records where no entry has been made
• Is Not Null – Finds all records where any entry has been made (even if zero)
Apply AND Criteria (Slide 2 of 4)
© 2017 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part, except for use as permitted in a license distributed with a certain product or service or otherwise on a
password-protected website for classroom use.
19
Query Design View with AND criteria
Apply AND Criteria (Slide 3 of 4)
© 2017 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part, except for use as permitted in a license distributed with a certain product or service or otherwise on a
password-protected website for classroom use.
20
Comparison operators
Apply AND Criteria (Slide 4 of 4)
© 2017 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part, except for use as permitted in a license distributed with a certain product or service or otherwise on a
password-protected website for classroom use.
21
• OR criteria means any one criterion must be true for the record to be selected
• Created by entering two or more criteria on different Criteria rows of the query
design grid
• Also created by entering two or more criteria in the same Criteria cell separated
by OR
Apply OR Criteria (Slide 1 of 2)
© 2017 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part, except for use as permitted in a license distributed with a certain product or service or otherwise on a
password-protected website for classroom use.
22
Query Design View with OR criteria
Apply OR Criteria (Slide 2 of 2)
© 2017 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part, except for use as permitted in a license distributed with a certain product or service or otherwise on a
password-protected website for classroom use.
23
• Change font size
• Change font face
• Change colors
• Change gridlines
Format a Datasheet (Slide 1 of 2)
© 2017 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part, except for use as permitted in a license distributed with a certain product or service or otherwise on a
password-protected website for classroom use.
24
Formatting a datasheet
Format a Datasheet (Slide 2 of 2)
© 2017 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part, except for use as permitted in a license distributed with a certain product or service or otherwise on a
password-protected website for classroom use.
Text Formatting group

More Related Content

PPTX
Advance HTML
PPTX
Access 2016 module 1 ppt presentation
ODP
Creating relationships with tables
PPTX
Web design principles
PDF
Cloud computing and OpenStack
PPTX
Introduction to Web Development
PPT
Windows Basic Computer Skills
PPTX
Excel 2010
Advance HTML
Access 2016 module 1 ppt presentation
Creating relationships with tables
Web design principles
Cloud computing and OpenStack
Introduction to Web Development
Windows Basic Computer Skills
Excel 2010

What's hot (20)

PPTX
MS WORD.pptx
PPT
Web browsers and web document
PPTX
PowerPoint basics
PPTX
Lesson 6 printing
PPT
PPTX
PPT
Facade pattern
PPTX
DOCX
Baigiang css
PPT
Web Standards
PPSX
Microsoft Power Point
PPT
Scratch Lesson 1 – Basics
PPTX
PPTX
Html table
PDF
Elements Of Web Design
PDF
Html table tags
PPTX
Html5 and-css3-overview
PPTX
MS Word Introduction and Tools.
DOC
Template Intervista al commitente
PPTX
Internet
MS WORD.pptx
Web browsers and web document
PowerPoint basics
Lesson 6 printing
Facade pattern
Baigiang css
Web Standards
Microsoft Power Point
Scratch Lesson 1 – Basics
Html table
Elements Of Web Design
Html table tags
Html5 and-css3-overview
MS Word Introduction and Tools.
Template Intervista al commitente
Internet
Ad

Viewers also liked (20)

PPTX
Access 2016 module 3 ppt presentation
PPTX
Access 2016 module 4 ppt presentation
PPTX
Word 2016 module 2 ppt presentation
PPTX
Word 2016 module 3 ppt presentation
PPTX
Power point 2016 module 1 ppt presentation
PPTX
Word 2016 module 1 ppt presentation
PPTX
Power point 2016 module 2 ppt presentation
PPTX
Word 2016 module 4 pp
PPTX
Power point 2016 module 4 ppt presentation
PPTX
Power point 2016 module 3 ppt presentation
ODP
Domain Access Module
PPTX
Excel module 1 ppt presentation
PPTX
Access 2013 Unit C
PPTX
Access 2013 Unit B
PDF
New Perspectives: Access.07
PDF
New Perspectives: Access.08
PDF
New Perspectives: Access.01
PDF
New Perspectives: Access.09
PPTX
New Perspectives: Access.02
PPTX
Computer Concepts Unit A 2013
Access 2016 module 3 ppt presentation
Access 2016 module 4 ppt presentation
Word 2016 module 2 ppt presentation
Word 2016 module 3 ppt presentation
Power point 2016 module 1 ppt presentation
Word 2016 module 1 ppt presentation
Power point 2016 module 2 ppt presentation
Word 2016 module 4 pp
Power point 2016 module 4 ppt presentation
Power point 2016 module 3 ppt presentation
Domain Access Module
Excel module 1 ppt presentation
Access 2013 Unit C
Access 2013 Unit B
New Perspectives: Access.07
New Perspectives: Access.08
New Perspectives: Access.01
New Perspectives: Access.09
New Perspectives: Access.02
Computer Concepts Unit A 2013
Ad

Similar to Access 2016 module 2 ppt presentation (20)

DOCX
Shelly cashman microsoft access 2016 module 2 querying a dat
PDF
Access 2016 Instructor S Manual Access Module 2 Building And Using Queries
PDF
Illustrated Microsoft Office 365 and Access 2016 Intermediate 1st Edition Fri...
PPTX
Chapter 4 microsoft access 2010
PPTX
MS Access Ch 2 PPT
DOCX
1 Week 6 - What Well Be Working On This Week In th.docx
PDF
Access 2010 Unit B PPT
DOC
5.02 Notes Student
PPT
Queries
PPTX
Access essential training framework
PDF
Access 03
PDF
MS Access 2010 tutorial 5
PPTX
Access Chapter 02
PPT
Queries
PPT
Queries
PPTX
Week 07 working with queries
PDF
Sorting & Extracting Data
PPT
Chapter 5 ms access-1
PPTX
Database and Access Power Point
Shelly cashman microsoft access 2016 module 2 querying a dat
Access 2016 Instructor S Manual Access Module 2 Building And Using Queries
Illustrated Microsoft Office 365 and Access 2016 Intermediate 1st Edition Fri...
Chapter 4 microsoft access 2010
MS Access Ch 2 PPT
1 Week 6 - What Well Be Working On This Week In th.docx
Access 2010 Unit B PPT
5.02 Notes Student
Queries
Access essential training framework
Access 03
MS Access 2010 tutorial 5
Access Chapter 02
Queries
Queries
Week 07 working with queries
Sorting & Extracting Data
Chapter 5 ms access-1
Database and Access Power Point

More from dgdotson (9)

PPTX
Windows 10 module 2 ppt presentation
PPTX
Windows 10 module 1 ppt presentation
PPTX
Word 2016 module 2 ppt presentation
PPTX
Ecc 2016 module 1 ppt presentation
PPTX
Excel module 4 ppt presentation
PPTX
Excel module 3 ppt presentation
PPTX
Excel module 2 ppt presentation
PPTX
Word 2016 module 1 ppt presentation
PPTX
Ecc 2016 module 1 ppt presentation
Windows 10 module 2 ppt presentation
Windows 10 module 1 ppt presentation
Word 2016 module 2 ppt presentation
Ecc 2016 module 1 ppt presentation
Excel module 4 ppt presentation
Excel module 3 ppt presentation
Excel module 2 ppt presentation
Word 2016 module 1 ppt presentation
Ecc 2016 module 1 ppt presentation

Recently uploaded (20)

PDF
Encapsulation_ Review paper, used for researhc scholars
PDF
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
PDF
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
DOCX
The AUB Centre for AI in Media Proposal.docx
PDF
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
PDF
Agricultural_Statistics_at_a_Glance_2022_0.pdf
PPTX
Effective Security Operations Center (SOC) A Modern, Strategic, and Threat-In...
PDF
Mobile App Security Testing_ A Comprehensive Guide.pdf
PDF
Building Integrated photovoltaic BIPV_UPV.pdf
PPTX
Understanding_Digital_Forensics_Presentation.pptx
PPTX
sap open course for s4hana steps from ECC to s4
PDF
Optimiser vos workloads AI/ML sur Amazon EC2 et AWS Graviton
PDF
Network Security Unit 5.pdf for BCA BBA.
PPT
“AI and Expert System Decision Support & Business Intelligence Systems”
PPTX
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
PPTX
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
PDF
Reach Out and Touch Someone: Haptics and Empathic Computing
PDF
Encapsulation theory and applications.pdf
PDF
Electronic commerce courselecture one. Pdf
PDF
Unlocking AI with Model Context Protocol (MCP)
Encapsulation_ Review paper, used for researhc scholars
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
The AUB Centre for AI in Media Proposal.docx
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
Agricultural_Statistics_at_a_Glance_2022_0.pdf
Effective Security Operations Center (SOC) A Modern, Strategic, and Threat-In...
Mobile App Security Testing_ A Comprehensive Guide.pdf
Building Integrated photovoltaic BIPV_UPV.pdf
Understanding_Digital_Forensics_Presentation.pptx
sap open course for s4hana steps from ECC to s4
Optimiser vos workloads AI/ML sur Amazon EC2 et AWS Graviton
Network Security Unit 5.pdf for BCA BBA.
“AI and Expert System Decision Support & Business Intelligence Systems”
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
Reach Out and Touch Someone: Haptics and Empathic Computing
Encapsulation theory and applications.pdf
Electronic commerce courselecture one. Pdf
Unlocking AI with Model Context Protocol (MCP)

Access 2016 module 2 ppt presentation

  • 1. 1 Access 2016 Module 2 Building and Using Queries
  • 2. 2 • Use the Query Wizard • Work with data in a query • Use Query Design View • Sort and find data • Filter data • Apply AND criteria • Apply OR criteria • Format a datasheet Module Objectives © 2017 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part, except for use as permitted in a license distributed with a certain product or service or otherwise on a password-protected website for classroom use.
  • 3. 3 • A query allows you to select a subset of fields and records from one or more tables and then present the selected data as a single datasheet • Because a query doesn’t physically store the data, a query datasheet is sometimes called a logical view of the data • A query stores a set of SQL (Structured Query Language) commands • Query Design View is an Access tool for writing queries without using SQL Use the Query Wizard (Slide 1 of 2) © 2017 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part, except for use as permitted in a license distributed with a certain product or service or otherwise on a password-protected website for classroom use.
  • 4. 4 Simple Query Wizard Use the Query Wizard (Slide 2 of 2) © 2017 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part, except for use as permitted in a license distributed with a certain product or service or otherwise on a password-protected website for classroom use.
  • 5. 5 • You enter and edit data in a query datasheet the same way you do in a table datasheet • Any edits you make in a query datasheet are permanently stored in the underlying tables, and are automatically updated in all views of the data in other queries, forms, and reports Work with Data in a Query (Slide 1 of 2) © 2017 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part, except for use as permitted in a license distributed with a certain product or service or otherwise on a password-protected website for classroom use.
  • 6. 6 Working with data in a query datasheet Work with Data in a Query (Slide 2 of 2) © 2017 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part, except for use as permitted in a license distributed with a certain product or service or otherwise on a password-protected website for classroom use. Updating Stanley to Captiva in one record updates all records
  • 7. 7 • Use Query Design View to: • Add, delete, or move the fields in an existing query, to specify sort orders, or to add criteria to limit the number of records shown in the resulting datasheet • Create a new query from scratch • Query Design View presents the fields you can use for that query in small windows called field lists • If you use the fields of two or more related tables in the query, the relationship between two tables is displayed with a join or link line identifying which fields are used to establish the relationship Use Query Design View (Slide 1 of 2) © 2017 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part, except for use as permitted in a license distributed with a certain product or service or otherwise on a password-protected website for classroom use.
  • 8. 8 Query in Design View Use Query Design View (Slide 2 of 2) © 2017 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part, except for use as permitted in a license distributed with a certain product or service or otherwise on a password-protected website for classroom use.
  • 9. 9 • The Access sort and find features are tools that help you quickly organize and find data in a table or query datasheet. • Data can be sorted by clicking the list arrow on a datasheet’s column heading, then click a sorting option Sort and Find Data (Slide 1 of 4) © 2017 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part, except for use as permitted in a license distributed with a certain product or service or otherwise on a password-protected website for classroom use.
  • 10. 10 Sort and Find Data (Slide 2 of 4) © 2017 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part, except for use as permitted in a license distributed with a certain product or service or otherwise on a password-protected website for classroom use. Changing sort orders for a query
  • 11. 11 Find and Replace dialog box Sort and Find Data (Slide 3 of 4) © 2017 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part, except for use as permitted in a license distributed with a certain product or service or otherwise on a password-protected website for classroom use.
  • 12. 12 Sort and Find buttons Sort and Find Data (Slide 4 of 4) © 2017 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part, except for use as permitted in a license distributed with a certain product or service or otherwise on a password-protected website for classroom use.
  • 13. 13 • Filtering provides a temporary way to display a subset of records that match given criteria • Filters are not used to calculate sums, averages, counts, etc. • Filters are removed when the datasheet is closed • Filters can be saved as queries • Filter By Selection: Filtering by a given field value. Filters records for an exact match. • Filter By Form: Filters by comparative data Filter Data (Slide 1 of 4) © 2017 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part, except for use as permitted in a license distributed with a certain product or service or otherwise on a password-protected website for classroom use.
  • 14. 14 • Wildcards • Used to search for a pattern; represents any character • Entered as criteria • ? Used to search for a single character • * Used to search for any number of characters • Often used with LIKE operator Filter Data (Slide 2 of 4) © 2017 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part, except for use as permitted in a license distributed with a certain product or service or otherwise on a password-protected website for classroom use.
  • 15. 15 Filters vs. queries Filter Data (Slide 3 of 4) © 2017 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part, except for use as permitted in a license distributed with a certain product or service or otherwise on a password-protected website for classroom use.
  • 16. 16 Filter buttons Filter Data (Slide 4 of 4) © 2017 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part, except for use as permitted in a license distributed with a certain product or service or otherwise on a password-protected website for classroom use.
  • 17. 17 • Criteria are tests or limiting conditions which restrict retrieval • AND criteria means all criteria must be true for the record to be selected • Created by entering two or more criteria in the same Criteria row of the query design grid • Criteria Syntax • Quotation marks (“) around text criteria and pound signs (#) around date criteria are automatically added by Access • Criteria in Number, Currency, and Yes/No fields are not surrounded by any characters Apply AND Criteria (Slide 1 of 4) © 2017 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part, except for use as permitted in a license distributed with a certain product or service or otherwise on a password-protected website for classroom use.
  • 18. 18 • Searching for blank fields • Is Null – Finds all records where no entry has been made • Is Not Null – Finds all records where any entry has been made (even if zero) Apply AND Criteria (Slide 2 of 4) © 2017 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part, except for use as permitted in a license distributed with a certain product or service or otherwise on a password-protected website for classroom use.
  • 19. 19 Query Design View with AND criteria Apply AND Criteria (Slide 3 of 4) © 2017 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part, except for use as permitted in a license distributed with a certain product or service or otherwise on a password-protected website for classroom use.
  • 20. 20 Comparison operators Apply AND Criteria (Slide 4 of 4) © 2017 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part, except for use as permitted in a license distributed with a certain product or service or otherwise on a password-protected website for classroom use.
  • 21. 21 • OR criteria means any one criterion must be true for the record to be selected • Created by entering two or more criteria on different Criteria rows of the query design grid • Also created by entering two or more criteria in the same Criteria cell separated by OR Apply OR Criteria (Slide 1 of 2) © 2017 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part, except for use as permitted in a license distributed with a certain product or service or otherwise on a password-protected website for classroom use.
  • 22. 22 Query Design View with OR criteria Apply OR Criteria (Slide 2 of 2) © 2017 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part, except for use as permitted in a license distributed with a certain product or service or otherwise on a password-protected website for classroom use.
  • 23. 23 • Change font size • Change font face • Change colors • Change gridlines Format a Datasheet (Slide 1 of 2) © 2017 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part, except for use as permitted in a license distributed with a certain product or service or otherwise on a password-protected website for classroom use.
  • 24. 24 Formatting a datasheet Format a Datasheet (Slide 2 of 2) © 2017 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part, except for use as permitted in a license distributed with a certain product or service or otherwise on a password-protected website for classroom use. Text Formatting group