1 / 39

Exam Review – Queries & MORE!

Exam Review – Queries & MORE!. Access SimNet Exam Access Case Exam Final Exam. Access SimNet Exam. DO the Access SimNet Lesson!. Access SimNet Exam Tips:. Some buttons show as compressed groups in the Ribbon!. Read Carefully.

finn
Download Presentation

Exam Review – Queries & MORE!

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Exam Review – Queries & MORE! Access SimNet Exam Access Case Exam Final Exam

  2. Access SimNet Exam DO the Access SimNet Lesson!

  3. Access SimNet Exam Tips: Some buttons show as compressed groups in the Ribbon! Read Carefully Some tips and hints you see in Access may not be visible in SimNet! Some questions require multiple steps! If it says to enter something and Save it; be sure you click Save! If it says to create a query & run it; be sure you click run! Know the Views! Which view are you in? You get 5 tries for each question!

  4. Access Case Exam Review the following!

  5. Queries! Aggregate Functions – Grouped Pattern Match List of Values Not List of Values Combination And / Or Calculated Field – Conditional Parameter Parameter to Return ALL Crosstab Find Duplicates Find Unmatched Top Value Simple Exact Match Not Exact Match <>, >,>=, <, <=, = And Or Between Dates Before a Date After a Date Calculated Field – Simple Math Aggregate Functions

  6. Queries – Simple (Tutorial 1 – Page AC 28) How to Create? Query Wizard How to enter criteria? N/A Criteria Example: N/A

  7. Queries – Exact Match (Tutorial 3 – Page AC 132) How to Create? Query Design How to enter criteria? Exact text on criteria line. “Text Field” in quotes. Criteria Example: “Holland”

  8. Queries – Not Exact Match (Tutorial 3 – Page AC 132) How to Create? Query Design How to enter criteria? Put Not in front of exact text on criteria line. “Text Field” in quotes. Criteria Example: Not “Holland”

  9. Queries – Comparison Operators <>, <, <=, >, >=, = (Tutorial 3 – Page AC 139) How to Create? Query Design How to enter criteria? Use correct comparison operator followed by value Criteria Example: >=25000

  10. Queries – Multiple Selection Criteria - AND (Tutorial 3 – Page AC 142) How to Create? Query Design How to enter criteria? Both criteria on the same criteria row. Criteria Example: >=25000 AND “Lansing” Both on same criteria line.

  11. Queries – Multiple Selection Criteria - OR (Tutorial 3 – Page AC 144) How to Create? Query Design How to enter criteria? One criteria on Criteria line; the other on the Or line. Criteria Example: >=25000 OR “Lansing” >=25000 on criteria line “Lansing” on Or line

  12. Queries – Between Dates (Tutorial 3 – Page AC 144) How to Create? Query Design How to enter criteria? Between #date# And #date# Criteria Example: Between #11/1/2011# And #12/31/2011#

  13. Queries – Before a Date How to Create? Query Design How to enter criteria? < #date# Criteria Example: < #12/31/2011#

  14. Queries – After a Date How to Create? Query Design How to enter criteria? > #date# Criteria Example: > #12/31/2011#

  15. Queries – Calculated Fields – Simple Math (Tutorial 3 – Page AC 147) How to Create? Query Design How to name the calculated field? Name: prior to formula Simple Math Formula: [InvoiceAmt] *.03 [Rate]/[NumberPeople] NOTE: Field names in []

  16. Queries – Aggregate Functions (Tutorial 3 – Page AC 152) How to Create? Query Design How to enter Aggregate Functions? Add the Total Row. Select Aggregate function for fields.

  17. Queries – Aggregate Functions - Grouped (Tutorial 3 – Page AC 154) How to Create? Query Design How to enter Aggregate Functions? Add the Total Row. Select Aggregate function for fields. How to group the Aggregate Functions? Add a field to Group by. Select Group by in total row.

  18. Queries – Pattern Match (Tutorial 5 – Page AC 221) How to Create? Query Design How to enter criteria? Begin with Like. Then inside “ “ put text and wild card combination. Criteria Example: Like “616*”

  19. Queries – Pattern Match (Continued) Wild Cards What are the wildcard options? *, ?, # What does * mean? Any string of characters (numbers or letters) Any single character (number or letter) What does ? mean? What does # mean? Any single digit (numbers only)

  20. Queries – Pattern Match (Continued) Wild Card – Examples East Grand River Grand Haven Grand Ledge Grand Rapids Sound Grand Aisle West Grand *Grand West Grand (Ends with Grand) Grand* Grand Haven, Grand Ledge, & Grand Rapids (Starts with Grand) *Grand* ALL! (Grand anywhere in field)

  21. Queries – List of Values (Tutorial 5 – Page AC 224) How to Create? Query Design How to enter criteria? Begin with In. Then inside () put each value separated by commas. Criteria Example: In (“Holland”, “Rockford”, “Saugatuck”)

  22. Queries – Not List of Values (Tutorial 5 – Page AC 225) How to Create? Query Design How to enter criteria? Put NOT in front of In. Inside () put each value separated by commas. Criteria Example: Not In (“Holland”, “Rockford”, “Saugatuck”)

  23. Queries – Combination And / Or How to Create? Query Design How to enter criteria? Or Criteria is put in as “List of Values”. And criteria goes on same criteria line. Criteria Example: In (“France”, “Italy”) AND In (1700, 2000)

  24. Queries – Combination And / Or (Continued) Examples: Country could be France or Italy AND the Rate can be 1700 or 2000. Rec# 1 2 3 4 Country France Italy England France Rate 2000 1700 1700 5000 Criteria: Or: In (1700, 2000) In (“France”, “Italy”) 1 & 2 NONE! Criteria: Or: “France” “Italy” 1700 2000 WHY?

  25. Queries – Combination And / Or (Continued) Examples: The rate can be less than 2000 or the country can be France and the rate can be less than 4000 WORK ON THIS ONE! Rec# 1 2 3 4 Country France Italy England France Rate 2000 1700 1700 5000 Criteria: Or: In (1700, 2000) In (“France”, “Italy”) 1 & 2 NONE! Criteria: Or: “France” “Italy” 1700 2000 WHY?

  26. Queries – Calculated Fields – Conditional (Tutorial 5 – Page AC 229) How to Create? Query Design How to name the calculated field? Name: prior to formula Immediate If (Conditional) IIf(expression, true, false) IsNull (Is blank) IsNull(expression) Concatenate (Combine) &

  27. Queries – Parameter (Tutorial 5 – Page AC 233) How to Create? Query Design How to enter criteria? [Prompting question] Square brackets placed around the question Criteria Example: [Enter the country]

  28. Queries – Parameter to return ALL if blank (Tutorial 5 – Page AC 236) How to Create? Query Design How to enter criteria? Use Pattern Match with [Prompting question] and wildcard after what is typed Criteria Example: Like [Enter the country] & “*”

  29. Queries – Crosstab (Tutorial 5 – Page AC 242) How to Create? Query Wizard NOTES: Read prompts in wizard carefully! Look at visual in “Sample box” to see query as you build it Review how to change column headings! (AC245)

  30. Queries – Find Duplicates (Tutorial 5 – Page AC 246) How to Create? Query Wizard How to enter? Which fields contain duplicates: enter at least 2 fields – the fields that may contain duplicate information Which other fields to display: enter any other fields you want displayed besides the duplicates NOTES: Read prompts in wizard carefully!

  31. Queries – Find Unmatched (Tutorial 5 – Page AC 247) How to Create? Query Wizard How to enter? Question 3: Click on the common field in each of the 2 tables (or queries), then click the center match symbol Matching fields should read: field1 < = > field2 NOTES: Read prompts in wizard carefully!

  32. Queries – Top Value (Tutorial 5 – Page AC 250) How to Create? Query Design How to enter top value? Use the Return box in the Query Setup Group (button in Ribbon) KEY ITEM You must SORT the records by the field first. Top Value Options Some preset percentages or number of records . OR Type in a percentage or number of records.

  33. More than Queries! Review the following!

  34. Know how to do the following: Create Custom Forms & Reports Data Validation Rules – where & how to enter and how to test Field Validation Rules Vs. Table Validation Rules Establish & understand table relationships Enforce referential integrity Cascade update related fields Cascade delete related fields

  35. Know how to do the following: File Maintenance Compact & Repair Backup Views Which view am I in? Which view do I need to be in? QUERIES! Practice! Practice! Practice!

  36. Access Case Exam Tips: Read Carefully Know how to enter all fields in a query in 1 step Make sure criteria are entered EXACT! (> or >=) Watch out for typing errors! Add only fields requested to a query! Add requested field in the order specified for the queries! QUERIES! PRACTICE! PRACTICE! Know all queries and other item in this power point!

  37. Final Exam Do Final Exam Concepts Review Lesson (2) Final Exam Excel/Access Review Lesson

  38. Final Exam Also still available: Excel SimNetLesson Computing Essentials Lesson 1 Computing Essentials Lesson 2 (Computing Essentials lessons may not be as helpful, since multiple-choice questions)

  39. Final Exam: SimNet Exam Tips: Read Carefully Be aware of compressed groups! Some hints may not be visible! Review all ribbon tabs for both software products! Some questions require multiple steps! Make sure you know if you are in Access or Excel! Concepts question multiple-choice– with 1 try. 5 tries per question on Access and Excel questions!

More Related