Archive for the ‘access queries’ Category

Access 2007 Tutorial Designing Queries Microsoft Training Lesson 7.2

Monday, March 8th, 2010

Learn how to design a query in Microsoft Access at www.teachUcomp.com. Get the complete tutorial FREE at http://www.teachucomp.com/free – the most comprehensive Access tutorial available. Visit us today!

Duration : 0:7:41

(more…)

How can I save and send Access tables, forms, queries, and reports to e-mail addresses as attachments?

Friday, March 5th, 2010


The tables can be exported as text files or spreasheets, but I don’t think you can attach the various Access objects outside of a database. If you’re trying to send the database via email but the program won’t let you, try zipping the database and attaching the zip file.

How to make queries in MS Access which require three columns to match?

Wednesday, March 3rd, 2010

OK

say I have an access table with 4 columns, A, B, C, and D. How can I make a query which requires column A = x, B=Y, and C=Z and return the value in column D?

Thanks for any help. I am making my queries in design view in Access 2003.

Just use Queries and get all table you would like to use for your requirement, drag the columns to relate the tables, more than one relations are permitted, use join type like outer joins by double clicking the relation path/line. select the field/s you would like to show and you can further add criteria to it!!! For more goto http://www.utteraccess.com/forums/

some queries in microsoft access

Tuesday, March 2nd, 2010

some queries in microsoft access

Duration : 0:4:25

(more…)

Access Queries And Reports, Please Help Me With This.?

Monday, March 1st, 2010

I am creating a database for my final project at school and experiencing difficulty creating queries and reports. What should they consist of. My database is for a salon and I have a table for employees and one for clients (I am only allowed 2 tables). I created 2 forms based on my tables, but now I need 5 queries and 3 reports what should I base them on? Any ideas my table fields for employees are employee number, name, address, gender, b-day, phone #, position, salary and date hired. For the clients table they are name, address, client #, stylist (I did a relationship between client and employee names), phone #, gender and b-day. That’s all I have right now, if you think I should include more fields or know what queries or reports I should use please help me. Thank you so much for your time. I will give you points for a good answer.

Salon Finder
We also offer free listings to salons so … Remember we are new and we are just building the database…Tell your salon about this service. …www.beautyweb.com/salon_finder/salon_finder.htm
Business Rules for Hairdressers Appointments
 . This Page defines the Requirements for a Database for a Hairdressing Salon. … A Client can be given a specified Salon Treatment. …www.databaseanswers.org/data_models/hairdressers/facts.htm
CaliforniaSalons.com
… a wide array of services, including our user friendly California salon database. … California Salons will not only find the closest salon for you, we will also …www.californiasalons.com
Affordable Salon software at $99.95 – Salon Management Software
… an affordable solution to both hair and nail salons. … a restore Point for your PC to specifically save and backup the salon database on a daily basis. …www.xtremeblue.com/Troubleshootingtips.htm
Salon.com | Bush’s bogus document dump
… and by linking the site to an entirely unrelated database of al-Qaida materials. … The Current Occupant goes for a walk …www.salon.com/opinion/feature/2006/04/13/document_dump/index_np.html

can you answer a parameter request in a access queries that have the same input value?

Saturday, February 27th, 2010


Yes, you can. (But didn’t you mean to post this under "Computers & Internet – Software"?)

Access 2007 Tip- Creating Queries

Saturday, February 27th, 2010

Perhaps the most widely distributed desktop database program in the world, Microsoft® Access is a standard in office information management. Whether you are new to Access or upgrading from a previous release, this course takes you step-by-step through your mastery of Access 2007. Learn to create, manage, and distribute databases, complete with input forms and advanced reporting.

Duration : 0:2:52

(more…)

Why >= or <= doesnt work on my MS ACCESS queries? How to make it work?

Thursday, February 25th, 2010

Im using this query for a range of IP numbers in a database, I was able to use it but, the result or the query is inaccurate

>= and <= will work with numbers, but if you’re IP addresses are stored in the traditional format (15.23.61.211 for example), Access won’t know what to do with them.

Try creating a new field, and entering this formula:
IP2: Replace([IP],".","")

Now, use >= and <= on this field, and see if that gives you the results you want. It most likely will not, unless you use the format 15.023.061.123 instead of 15.23.61.123.

Where may I find out which SQL sentences/queries are availabe in MS Access?

Tuesday, February 23rd, 2010

Greetings,
Let me explain myself:
For example, I cant use CASE sentences on a MS Access 97 query… I’d like to know which are available and which are not, to be sure its Access’ fault and not a sintaxis error..

Access 97 supports only limited SQL queries. Most of these can be generated with the query designer functionality in Access, but if you want to access the database using more advance SQL commands, try writing a VB program to do it and use an OLEDB jet connection. Then you get whatever functionatily you want on it.
Good luck!

How do i stop Microsoft Access from putting out double information from my queries?

Sunday, February 21st, 2010

The issues is I have to excel spread sheets with serial numbers connected to data in rows. However some of the data when being output to a report repeats itself with identical rows. What do i write in the criteria for that column so that it only puts out each serial number once? PLEASE HELP ME
The issues is I have to excel spread sheets with serial numbers connected to data in rows. However some of the data when being output to a report repeats itself with identical rows. What do i write in the criteria for that column so that it only puts out each serial number once? PLEASE HELP ME

Note: Tables are linked to excel files
serial numbers are only repeated in one excel file out of two.

Note that something like this:

ID, Name, Gender
4, Bob, M
4, Jane, F

is ok with the ID repeated. I’m assuming you’re talking about this:

ID, Name, Gender
4, Bob, M
4, Bob, M

Try using GROUP BY in one of the field names.