Book Use your pdf converter to make your pdf files easy! You can now buy software that makes converting pdf to doc possible! Did you know you can even convert pdf to word? Home Page Bloglines 1906 CelebrateStadium 2006 OfficeZealot Scobleizer TechRepublic AskWoody SpyJournal Computers Software Microsoft Windows Excel FrontPage PowerPoint Outlook Word ![]() ![]() Host your Web site with PureHost! ![]() |
![]() ![]() Thursday, December 17, 2009 – Permalink – Combo Box QueriesHow toParameter queries add flexibility to filtering records in a database. To make it easy, take a look at this approach from Martin Green's Office Tips site: Drop down box in a Parameter Query
Base Combo Box on Parameter Query to Filter Values See all Topics access <Doug Klippert@ 3:25 AM
Comments:
Post a Comment
Saturday, October 31, 2009 – Permalink – Hiding Duplicates in Query ResultsOnce is enoughIt's easy to hide duplicate entries when you run a query, even though Access doesn't go out of its way to call attention to this ability.
Access displays unique records based on each field returned by the query. See all Topics access <Doug Klippert@ 3:12 AM
Comments:
Post a Comment
Friday, August 28, 2009 – Permalink – Parameter v. FormYou have a choiceThere are a couple of ways to limit the data that is displayed in a Query or in a report. One is a Parameter Query
Also see FontStuff.com: Using Parameter Queries See all Topics access <Doug Klippert@ 3:02 AM
Comments:
Post a Comment
Sunday, May 03, 2009 – Permalink – Crosstab Query Column HeadingsUsing Month NumbersIf you display a crosstab query as a datasheet, consider using a month's or day's number as a column heading instead of a text abbreviation (e.g., 1 instead of Jan or January, or 2 instead of Mon). Text abbreviations are sorted alphabetically. Apr appears before Feb, Mon appears before Sun, etc. Number representations will sort in their proper order. See all Topics access Labels: Queries <Doug Klippert@ 3:03 AM
Comments:
Post a Comment
Saturday, February 28, 2009 – Permalink – Parameter Queries DeuxAnother look at parametersThe ability to use dynamic criteria in a Query makes Access even more valuable.David Badurina operates NlueMooseTech.com. He has produced an Access Parameter Query Tutorial video that walks the viewer gently through the process. The site also has information on Excel and Word. (Parameter queries are also referenced here: Parameter v. Form) How to create a parameter query Using Parameter Queries See all Topics access <Doug Klippert@ 3:24 AM
Comments:
Post a Comment
Friday, October 10, 2008 – Permalink – Hidden PasswordsFormat to mask entryYou can easily set up a text box to mask entries with asterisks, allowing you to hide entries like passwords from prying eyes. To do so, in Design view, display the properties for the text box and change the Input Mask property to Password. Passwords can then be displayed as ****** Also see: Microsoft-AccessSolutions.co.uk: Add Simple Security How to create a User Login Form in Microsoft Access See all Topics access Labels: Forms, Properties, Queries, Tutorials <Doug Klippert@ 3:23 AM
Comments:
Post a Comment
Monday, July 07, 2008 – Permalink – Hidden TablesDon't peekIf you do not want the ordinary user to see a table in your database, you can hide it in the database windows so that other users cannot select it. Preface the table's name with the four letters 'Usys'. For example, if your table's name is ProprietaryCosts , change it to Usys ProprietaryCosts. This makes your table into a system object which Access does not display. To see this table later, in Tools>Options, on the View tab in the Show section, put a check mark by System objects. If we agree among ourselves not to tell the uninitiated, no one need be the wiser.
<Doug Klippert@ 3:30 AM
Comments:
Post a Comment
Friday, June 20, 2008 – Permalink – Import QueriesAs TablesIf you want to use the results of a query, and you don't need to update the underlying tables, you don't have to import unnecessary data. You can import the query as a new table.
Access processes the queries and saves the results as a table with the same name as the original query. See all Topics access <Doug Klippert@ 6:49 AM
Comments:
Post a Comment
Saturday, May 03, 2008 – Permalink – Sample Queries, Forms, ReportsExamples to part outThis sample queries database contains examples of useful database queries, including the crosstab query, the union query , and the join query Sample: query topics database Here are some other sample databases. They are all for Access 2000, but the installed base is predominantly in that format. Access 2000 is also the default format for Access 2002 and 2003. Sample Access databases that you can download and adapt
Some forms include:
See all Topics access <Doug Klippert@ 6:15 AM
Comments:
Post a Comment
Sunday, April 06, 2008 – Permalink – Add a TableDrag drop trickWhile working with a query in Design view, you may find that you need to add a table or query. The "book" way to do it is to click the Show Table toolbar button, drag the appropriate objects from the list, and then close the dialog box. There is another way to do this.
<Doug Klippert@ 6:50 AM
Comments:
Post a Comment
Wednesday, December 19, 2007 – Permalink – Quickly Query Table NamesChange by code
<Doug Klippert@ 4:00 AM
Comments:
Post a Comment
Tuesday, December 11, 2007 – Permalink – Add Objects to the Query GridEasy additionsIf you need to add a table or query to a query you're building in Design view, you most likely click the Show Table button, drag the appropriate objects from the resulting dialog box, and then close the dialog box. However, there's a much easier way to do this. Simply drag the table or query object's icon directly to the gray background of the query design grid. This same technique also works with Access's Relationships window. See all Topics access <Doug Klippert@ 8:04 AM
Comments:
Post a Comment
Friday, November 09, 2007 – Permalink – Null ParameterShow somethingIf a user doesn't specify a parameter value, you can use a wildcard with the parameter in the format Like [Enter Name] & "*" The problem with this is that the query will return records that partially match the criteria. For instance, if users searching for records based on last name enter a parameter value of "Smith" they'll also get the records for Smithers, Smithfield and Smithson. Another problem is that the parameter query will ignore any records where the field being searched contains a Null value when you try to return the entire recordset with a blank parameter. To fix this, set up a query to limit responses to explicit parameter entries, but still allow users to return all records by leaving the parameter blank. If you're searching for LastName, open the query design grid and add LastName to it. In the Criteria row for the field, enter the parameter prompt [Enter Name] Then, in the next blank column of the design grid, enter the same parameter (everything between and including the square brackets) in the Field text box. Finally, in the Or row, enter the criteria Is Null . If you're using any additional criteria for other fields, make sure to copy that criteria to the Or line as well. See all Topics access Labels: Queries <Doug Klippert@ 6:21 AM
Comments:
Post a Comment
Thursday, July 26, 2007 – Permalink – Use a Table Aliasto change names in a queryWhen you need to change the table name referenced in an existing Access query, it can be a pain. This is especially true if the query contains a large number of fields. You typically might use an alias when you need to relate a table to itself or tables have long or unwieldy names. If you make a practice of always using aliases in your queries, you can easily change which table is used by changing the one occurrence of the original table name in the query's FROM clause.
![]() See all Topics access <Doug Klippert@ 7:36 AM
Comments:
Post a Comment
Thursday, March 15, 2007 – Permalink – SQL statements AutomaticallyHidden code
<Doug Klippert@ 6:23 AM
Comments:
Post a Comment
Wednesday, January 10, 2007 – Permalink – View Related FieldsThe whole thingWhen designing a query, you'll often find the need to temporarily view fields beyond the ones you want shown in the final result. To do so, you probably drag the relevant fields to the design grid and then delete them when you're done. However, there's an easier way to view the data that you typically want excluded in the query. To do so:
Data from all of the underlying tables' fields will be displayed in addition to the fields you specified in the QBE grid. To change the query so that it only displays the fields explicitly selected in the QBE grid, simply reset the Output All Fields property to No. ![]() See all Topics Labels: Queries <Doug Klippert@ 4:51 AM
Comments:
Post a Comment
|