Search the web
Sign In
New User? Sign Up
MS_Access_Professionals · MS Access Professionals
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 32370 - 32399 of 76999   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
32370
Hi Achi, 1. Do not store the NextDate in the table. 2. Use a Query based on the Table as the DataSource for the Form. 3. In the Query, add a CalculatedField...
horastacatto
Offline Send Email
Jan 1, 2006
1:07 pm
32371
Everyone is telling you that if you can calculate a value from a field in the table, there is no need to record the calculated value in the table. You can...
Jim C
liteguy.rm
Offline Send Email
Jan 1, 2006
1:28 pm
32372
Make a field "Repairing date" in your table and add what ever fields you need but DO NOT MAKE A NEXT REPAIRING DATE field. Instead show a calculated field...
Jim C
liteguy.rm
Offline Send Email
Jan 1, 2006
1:42 pm
32373
Hello Access_Professionals, Where does the Add-In Manager get the file name? I've renamed a MDA file, and changed the project name in the Tools | Options |...
Greg
gw_goldwing
Offline Send Email
Jan 1, 2006
5:07 pm
32374
Hi everyone, it is clear enough. Thanks a lot. Sorry to put you in trouble by answering my questions. Achi _____ From: MS_Access_Professionals@yahoogroups.com ...
Achi Rachimuddin
surau2003
Offline Send Email
Jan 1, 2006
10:52 pm
32375
Hello Greg, ... Go to File | Database Properties | Title box from Access's main menu. Thanks to another source. Not to answer my own question, but I thought ...
Greg
gw_goldwing
Offline Send Email
Jan 1, 2006
11:44 pm
32376
Dear All, I have a question, I would like to make a repairing schedule from January to December. Can anyone help me how to make it? where can I process the...
Achi Rachimuddin
surau2003
Offline Send Email
Jan 2, 2006
12:59 am
32377
Greg We always appreciate it when someone posts an answer even if it is to their own question. Thanks for taking the time to do so. Regards, Bill Mosca Founder...
Bill Mosca
wrmosca
Offline Send Email
Jan 2, 2006
1:28 am
32378
I am trying something which I thought was going to be easy to do but it turns out that it is not working for me. What I am trying to do is to create a master...
Dale
tenn_tazz26
Offline Send Email
Jan 2, 2006
2:41 am
32379
If you are repairing every six months, then use a calculated field that adds 180 days to the repaired date and sort on that filed in ascending order. When the...
J. Coon
liteguy.rm
Offline Send Email
Jan 2, 2006
3:33 am
32380
How to group the date? Such as January or February etc. what is the formula to group it? where I write the formula? thanks _____ From:...
Achi Rachimuddin
surau2003
Offline Send Email
Jan 2, 2006
3:58 am
32381
Ok I have done that. Now I want to group all repaired unit for every month January to December. Any one can help me??how to do that _____ From:...
Achi Rachimuddin
surau2003
Offline Send Email
Jan 2, 2006
4:05 am
32382
Dale- When you have difficulty making Access do something, it often is a problem with your table design. It sounds like you have four tables - clients and ...
John Viescas
jlviescas
Offline Send Email
Jan 2, 2006
4:23 am
32383
Achi, Paste this in the SQL View of a query while in Design View. You will need to change DateField to your date field’s name, and TableName to your table ...
Beth Moffitt
bethmoffitt2
Offline Send Email
Jan 2, 2006
5:05 am
32384
It's not working. I have like this SELECT Month([Date Of Comm]) AS [1] FROM TBL Commissioning GROUP BY Month([Date Of Comm]); But it is not working. _____ ...
Achi Rachimuddin
surau2003
Offline Send Email
Jan 2, 2006
7:42 am
32385
... From: John Viescas To: MS_Access_Professionals@yahoogroups.com Sent: Saturday, December 31, 2005 2:32 PM Subject: RE: [MS_AccessPros] Query And Report...
lewis
lewiskidd
Offline Send Email
Jan 2, 2006
12:33 pm
32386
Hi John, thankyou very much for your reply. Here is what I currently have at the moment. SELECT sholasc.Ward, Sum(sholasc.Dwellings) AS SumOfDwellings,...
lewis
lewiskidd
Offline Send Email
Jan 2, 2006
12:44 pm
32387
You cannot have a space in your table name. This might work: SELECT Month([Date Of Comm]) AS [1] FROM [TBL Commissioning] GROUP BY Month([Date Of Comm]); Or...
John Viescas
jlviescas
Offline Send Email
Jan 2, 2006
12:47 pm
32388
No reply included - did you hit send too soon? John Viescas, author "Building Microsoft Access Applications" "Microsoft Office Access 2003 Inside Out" "Running...
John Viescas
jlviescas
Offline Send Email
Jan 2, 2006
12:59 pm
32389
Lewis- Not exactly. What is "PPG Group"? What is Ward? If you add another field and don't specify an aggregate, you should see additional rows produced - ...
John Viescas
jlviescas
Offline Send Email
Jan 2, 2006
1:04 pm
32390
What I have is a table called clients, one called ISC (independent Service Coordinators), Counties, Provider Agencies, Domain F, Domain M, and Domain P. The...
Dale C
tenn_tazz26
Offline Send Email
Jan 2, 2006
4:28 pm
32391
... From: John Viescas To: MS_Access_Professionals@yahoogroups.com Sent: Monday, January 02, 2006 12:59 PM Subject: RE: [MS_AccessPros] Query And Report Design...
lewis
lewiskidd
Offline Send Email
Jan 2, 2006
5:33 pm
32392
Hi John, to answer your questions. What do I want to see ? I wish to see a number of outputs in the report. 1) The number of brown field developments. 2) The...
lewis
lewiskidd
Offline Send Email
Jan 2, 2006
5:43 pm
32393
Dale- Are F1Y, F1N, F1NA, F2Y, F2N, F2NA, ... etc. all fields in one row? If so, you have a table design problem. Your Domain F table should look like: ...
John Viescas
jlviescas
Offline Send Email
Jan 2, 2006
9:03 pm
32394
Lewis- It would be useful to know the structure of the sholasc table - including a description of what is in each field relevant to this problem. A couple of ...
John Viescas
jlviescas
Offline Send Email
Jan 2, 2006
9:10 pm
32395
Hi John, I have zipped and emailed you the table structure and contents on your other email address Rgds Lewis ... From: John Viescas To:...
lewis
lewiskidd
Offline Send Email
Jan 2, 2006
10:46 pm
32396
F1Y, F1N, F1NA, F2Y, etc are all each separate fields in the table and they are listed as Yes/No datafields. When the form is filled out there should only be...
Dale C
tenn_tazz26
Offline Send Email
Jan 2, 2006
11:23 pm
32397
Dear all, I have some data. The data is "Date". Now I want to find the newest date. For example Table Repair LV no repaired 1...
Achi Rachimuddin
surau2003
Offline Send Email
Jan 3, 2006
12:20 am
32398
Lewis- OK, I see Ward, PPG3 Brown number, PPG3 Conv number, PPG3 Green number, and Urban Vac number. What is the meaning of the values in PPG3 Group? I see 9...
John Viescas
jlviescas
Offline Send Email
Jan 3, 2006
2:36 am
32399
Dale- As pointed out earlier, your table structure is wrong. You need one row per ClientID and question number - and the data fields should by Y, N, and NA. ...
John Viescas
jlviescas
Offline Send Email
Jan 3, 2006
2:40 am
Messages 32370 - 32399 of 76999   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help