AllExperts > Experts 
Search      

Using MS Access

Volunteer
Answers to thousands of questions
 Home · More Questions · Question Library  · Free Encyclopedia ·
More Using MS Access Answers
Question Library

Ask a question about Using MS Access
Volunteer
Experts of the Month
Expert Login

Awards

About Us
Tell friends
Link to Us
Disclaimer

 
 
 
About Scottgem
(Top Expert on this page)

Expertise
I can answer almost all types of questions relating to Microsoft Access usage and application design. My strengths are database and interface design.

Experience
I've been designing databases for over 15 years working with dBase, FoxPro, Approach and Access.

Organizations
Author of Microsoft Office Access 2007 VBA
Techncial Editor for Special Edition Using Microsoft Access 2007 and Access 2007 Forms, Reports & Queries From Que Publishing

   

You are here:  Experts > Computing/Technology > Business Software > Using MS Access

SubjectDate AskedExpert

Can you set passwords to different forms in a database11/17/2008Bob Alston
  Q: I am setting up a database with multiple users. I would like different users to only have access to ...
  A: If you are in a LAN environment where everyone signes on to the LAN, I like to capture the user name ...
joint queries11/17/2008Scottgem
  Q: I would like to ask the question about jointing queries for instant: if i have 2 queries like this ...
  A: This would be easier in a report. But if you want to do it in a query: SELECT UCase([Ingredient]), ...
joint queries11/17/2008Bob Heifler
  Q: I would like to ask the question about jointing queries for instant: if i have 2 queries like this ...
  A: Use the UCase and Format functions: SELECT UCase([Ingredient]), [Unit], Format([cost], ...
Creating append query to remove duplicate records11/17/2008Scottgem
  Q: I believe its simple but I am missing a logic somewhere. I have an Access database which I use to ...
  A: Like I said, all you need to is set the Order_Number field to No Duplicates. When you try to run an ...
joint queries11/17/2008Bob Heifler
  Q: I would like to ask the question about jointing queries for instant: if i have 2 queries like this ...
  A: You need a union query. Here is an example of the SQL that you will need to past in a SQL view of ...
joint queries11/17/2008Scottgem
  Q: I would like to ask the question about jointing queries for instant: if i have 2 queries like this ...
  A: Are these tables or queries? If they are tables this is not good design. You shouldn't have separate ...
Creating append query to remove duplicate records11/17/2008Scottgem
  Q: I believe its simple but I am missing a logic somewhere. I have an Access database which I use to ...
  A: That doesn't quite answer my question. However, if you are appending records to a table and you ...
future value function in access11/17/2008Scottgem
  Q: How do you do the future value function that you normally use in Excel but in Access 2007?
  A: The following is from Access VB help: FV Function Returns a Double specifying the future value ...
Ms-Access Database connectivity11/17/2008Scottgem
  Q: I am using Ms-access 2000.I created a table in Access.I have to access table fields in ms-access ...
  A: Why do you need to use ADO? I'm not clear what you are trying to do. Do you just want to create a ...
If statements11/17/2008Scottgem
  Q: I am trying to group a bunch of names and call it Other holds her is my if statementHolds: ...
  A: Try IIf([HOLD_CODE] = ("PH") Or [HOLD_CODE] = "BMU",'OtherHolds',[HOLD_CODE]) Since you are ...
project11/15/2008Scottgem
  Q: I am making a questionare about student's school problems,in which questions about different type of ...
  A: First you create a query that sums the answers by problem type. Next you join that query with the ...
Selecting a value in a subform11/14/2008Bob Heifler
  Q: I am currently working on an interface for my database. I have two forms - Soldier_Information and ...
  A: Try adding the word Form: Forms!Soldier_Information!History_Subform![Form]![Reason] = ...
Referencing Query Data11/14/2008Scottgem
  Q: I have a table of an equipment inventory. I want to generate a report from a form I;ve also ...
  A: You don't generate a report from a form. You can use a form to enter criteria for a query that will ...
Automatically Filling in Data in access11/14/2008Bob Heifler
  Q: In Microsoft Access, I have a PART NUMBER column and a COST column. I have a part number that is ...
  A: Mark, Two ways to go: 1) Make a form. Place a button on the form. Place this code on the click event ...
query11/14/2008Scottgem
  Q: There are two tables and a form, when the user types in the number into the text box and choose the ...
  A: At some point, maybe when you call the form or do the search, you need to test (using a Dcount) ...
no record returned11/14/2008Scottgem
  Q: i need to find out how to show a msg box if a record is not returned from a paramater query. all is ...
  A: I almost never use paramter prompt queries because they are so limiting. This is one example. What ...
sorting two fields togther in the same database11/13/2008Bob Heifler
  Q: I am building a database for couples addresses and other data. I want to build a report that lists ...
  A: Your report design area allows for sorting and setting the sort order of the fields. The icon on the ...
How adding (personal) photos to Ms Access11/13/2008Scottgem
  Q: I make a table which is having, ID Num, Name, Date of Birth and ect... in this table i want to add a ...
  A: The best way is to add a text field that contains the path to the image file. You then use an ...
question11/13/2008Bob Heifler
  Q: I add a pviot chart to a report and it works fine just when I change the color and run the report ...
  A: The color should not change unless you have used some kind on Conditional Formating built into ...
counting number of c's I's and n/a's11/13/2008Scottgem
  Q: I found a access survey database that Im using called at your survey. I remember you said to change ...
  A: Ok, the key here is tblReponses. When a user fills in a survey. the first thing they do is create a ...
Entity relationship design in Ms Access11/13/2008Scottgem
  Q: sorry for my English, I am not a native English speaker.I am trying to simulate citizens of a ...
  A: That's fine. Its a one to many because one country can have many citizens. Referentail Integrity ...
Unique sequential numbering in Access 200711/13/2008Scottgem
  Q: I am a access newbie (1 month) and have created a database that tracts our staff members that apply ...
  A: Either you are misunderstanding what you have read or you need to use different sites. Every Access ...
query11/13/2008Geoff
  Q: There are two tables and a form, when the user types in the number into the text box and choose the ...
  A: Zsolt hi, This is a "design" feature of Access ! No records = blank form. The only solution is to ...
How can i fetch data relative to data filled in the current form11/13/2008Geoff
  Q: I have two tables in my DB, one is main table and another one is lookup table. I have two fields in ...
  A: In the [Name] text box Control Source property enter an expression based on the following - you will ...
Password protecting an access button11/13/2008Scottgem
  Q: I need a way to simply password protect a button on the form I use as my front page via input box ...
  A: In the On Click event of the button use code like: IF InputBox("Enter Password") = "password" Then ...
Unique sequential numbering in Access 200711/12/2008Scottgem
  Q: I am a access newbie (1 month) and have created a database that tracts our staff members that apply ...
  A: Why do you need a sequential number? what you should be doing is have an autonumber field as your ...
Lookup list dependent on other data11/12/2008Bob Alston
  Q: Greetings. I am working in Access 2000 on a db to capture all the basketball results for this coming ...
  A: I assume you are creating an entry in the games table with the game date and selection of the home ...
Type Mismatch Error11/12/2008Bob Heifler
  Q: Bob, First and for most thanks for taking my question! I can't figure out why I keep getting a "type ...
  A: If you really want to delete the records matching your WHERE then replace ...
peramiter query11/12/2008Bob Heifler
  Q: I have a form based off of a peramiter query and when there is no answer for that query the form ...
  A: Erik, You can open a recordset on the form's recordsource first to check if any records. Code: Dim ...
Multiple Entries in an Access table field11/12/2008Geoff
  Q: How can I allow several entries in an Access table field? I have a field called 'associated ...
  A: I would not advise this in a database application - of course if you want to manually type in ...
Obtaining next available Member ID11/12/2008Geoff
  Q: I am trying to determine how to best set my form up to obtain the next available member number. How ...
  A: Why don't you use the Autonumber data type for the MemberID - it was made for exactly this ...
Search Function for a subform11/12/2008Scottgem
  Q: What is the best way to search for data in a subform? I have a simple database that logs calls and ...
  A: Add an unbound textbox to your MAIN form. Make the subform bound to a query. In the query set the ...
Query for specified number of records11/12/2008Bob Heifler
  Q: I am working in Access 2003. I constructed a select query that tells me how many times in the past ...
  A: Gaye, Yes, in the query on the missed times column set the criteria to: >=5 or >4 both will work. ...
format two tables in same report differently11/12/2008Scottgem
  Q: I am a novice in Access and was hoping you could help. I have a Union query that returns calculated ...
  A: Access uses a "banded" report writer. Each section in Report design is considered a band. By default ...
Multi Field Search Function in Access11/11/2008Geoff
  Q: I'm new at using access, and really hope you can give me some detailed instructions. I have set up ...
  A: Set the subform based on a query, say qrySF - anything just to get going. Next under the search ...
format two tables in same report differently11/11/2008Scottgem
  Q: I am a novice in Access and was hoping you could help. I have a Union query that returns calculated ...
  A: First what you describe in Design view is SOP. There is only one set of controls to represent the ...
Speeding up search access 200011/11/2008Bob Alston
  Q: I have a database which works fine BUT as I add more records it is slowing down during search. The ...
  A: YOu should be able to define indices on the key fields that distinguish the different logical types ...
Multi Field Search Function in Access11/11/2008Geoff
  Q: I'm new at using access, and really hope you can give me some detailed instructions. I have set up ...
  A: Proramming a search form is one of the most complicated tasks for any developer, so if you are new ...
File Browse Feature11/11/2008Scottgem
  Q: I noticed that this question has been asked before and you directed the person to the API website ...
  A: First, the code doesn't go behind a button, it should all go into a global module. The only thing ...
Access 2007 - Linking data11/10/2008Scottgem
  Q: Having an issue with trying to link data and then closing the original form. I have the following: ...
  A: So you are creating a new record in FRM_SALES? If so, you can pass the ECID in the OpenArgs argument ...

Page:   1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10  |  Next


Questions by
Active Experts:
Richard RostMicah RouseyGeoff
ScottgemHernan SainJoshua B
Lisa SimsManish BatolaKaustav Neogy
Bob HeiflerBob AlstonJulie Misson
   

     
About Us | Advertise on This Site | User Agreement | Privacy Policy | Kids' Privacy Policy | Help
Copyright  © 2008 About, Inc. About and About.com are registered trademarks of About, Inc. The About logo is a trademark of About, Inc. All rights reserved.