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 22057 - 22086 of 76984   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
22057
(This tip refers to Access 2000. It will work for most versions of Access, but some of the steps might not be the same for all versions.) Almost all objects...
Bill Mosca
wrmosca
Offline Send Email
Jan 1, 2005
9:35 pm
22058
Trying to get a user menu to open when I open a database, help!!!...
Alvin L. Rosser Jr.
rosser29
Offline Send Email
Jan 1, 2005
10:55 pm
22059
You can set the startup form with: Tools/Startup/"Display Form/Page" Paul...
Paul
pbaldy72
Offline Send Email
Jan 1, 2005
11:49 pm
22060
This is how my query looks SELECT DISTINCTROW Format$([tblGAS].Date,'mm yyyy') AS [Date By Month] FROM tblMyTable GROUP BY Format$([tblMyTable].Datex,'mm...
Joe
myhnews
Offline Send Email
Jan 2, 2005
2:38 am
22061
Joe, That sort looks correct. Strings sort 0-9 for the first character, then the next character is sorted. If you want to sort by dates (probably the way you ...
Neil Squires
greaterdesig...
Offline Send Email
Jan 2, 2005
3:02 am
22062
If this is a report, set the report’s sorting by clicking on the Sorting/ Grouping icon. If this is a query only, add an Order by Clause. SELECT DISTINCTROW...
Bill Mosca
wrmosca
Offline Send Email
Jan 2, 2005
4:54 am
22063
Hi All I am working on a client contact data base using one table dbtClient. I have also developed four other query tables based upon different data needs from...
A.M.Connolly
smiley2004_10
Offline Send Email
Jan 2, 2005
5:53 am
22064
Hi All As mentioned before I am working on a client contact data base using one table dbtClient. I have also developed four other query tables based upon...
A.M.Connolly
smiley2004_10
Offline Send Email
Jan 2, 2005
6:00 am
22065
1. I have a rather large Access XP table 2. First field is called "FilerName" 3. I would like to have a report telling me how many times each filername...
ltportellar
Offline Send Email
Jan 2, 2005
7:40 am
22066
By using a Query form and viewing it in SQL you could construct a report from it by putting in it SELECT FilerName,(and other fields you select),...
A.M.Connolly
smiley2004_10
Offline Send Email
Jan 2, 2005
8:41 am
22067
... Alvin, have you also found and tried the Switchboard? I have a tutorial about it if you want to go that way. Look it up in Help to see if that's what you...
Brett Collings
zkbac
Offline Send Email
Jan 2, 2005
10:41 am
22068
Hi, You need freate a query with SQL like: SELECT Count(FilerName) AS CountOfFilerName, FilerName FROM [your_table_name] GROUP BY FilerName; You can then use...
horastacatto
Offline Send Email
Jan 2, 2005
10:54 am
22069
Sorry Adrian, I did not realise that you had already replied to this problem. Now I know that the latest list has most recent at the top. Regards, Clive...
horastacatto
Offline Send Email
Jan 2, 2005
11:10 am
22070
A million thanks. It worked~ Happy New Year L T ... From: horastacatto [mailto:zctek@...] Sent: Sunday, January 02, 2005 6:11 AM To:...
LTPortella
ltportellar
Offline Send Email
Jan 2, 2005
5:55 pm
22071
Thank you very much Have a Happy New Year L T Portella ... From: A.M.Connolly [mailto:aco43743@...] Sent: Sunday, January 02, 2005 3:41 AM To:...
LTPortella
ltportellar
Offline Send Email
Jan 2, 2005
5:56 pm
22072
Can anyone here point me in the right direction? I originally posted this message back in November and am still looking for some help. If you or anyone you...
tom_sawczuk@...
tom_sawczuk
Offline Send Email
Jan 2, 2005
6:21 pm
22073
Many thanks to everyone for the help! Fortunately, my database appears to be fine. I think what happened was that a network-run backup was going on which...
sjmagain
Offline Send Email
Jan 2, 2005
7:14 pm
22074
That sounds about right. Backup processes normally lock all database files so the data can’t be changed. Regards, Bill Mosca Founder ... From: sjmagain...
Bill Mosca
wrmosca
Offline Send Email
Jan 2, 2005
8:47 pm
22075
To Clive Williams (C-Trek) Thats ok the more answers the better for all even though similar. Regards Adrian ... From: "horastacatto" <zctek@...> To:...
A.M.Connolly
smiley2004_10
Offline Send Email
Jan 2, 2005
8:59 pm
22076
Adrian I completely agree with you. It never hurts to see more that one solution. Regards, Bill Mosca Founder ... From: A.M.Connolly...
Bill Mosca
wrmosca
Offline Send Email
Jan 2, 2005
9:07 pm
22077
Hi, This is a query only. I tried Bill and Niel's sample and it sill doesn't work. I have uploaded a small sample at ...
Joe
myhnews
Offline Send Email
Jan 2, 2005
11:33 pm
22078
Hi Joe I down load your DB and found that part of yourt code had the reference to the same field in the form. But I did get this to work SELECT tblGAS.CusID,...
A.M.Connolly
smiley2004_10
Offline Send Email
Jan 3, 2005
12:53 am
22079
Hi Adrian, I appreciate your help. However, I have no problem with my first query. Please take a look at query "qryPreviousBalance" In this query I'm grouping...
Joe
myhnews
Offline Send Email
Jan 3, 2005
3:29 am
22080
SELECT tblGAS.Datex, tblGAS.Charge, tblGAS.Payment, tblGAS.CusID FROM tblGAS WHERE (((tblGAS.Datex) Between [Forms]![Select Date]![Starting Date] And ...
A.M.Connolly
smiley2004_10
Offline Send Email
Jan 3, 2005
3:52 am
22081
Chris, For navigating to the record (on subform) having its CustomerID matching the value selected in combo box named cboCustomerList (on the main form), code...
A.D.Tejpal
adt_y
Offline Send Email
Jan 3, 2005
4:19 am
22082
Joe Create alias fields called MyYear: Year([datex]) and MyMonth: Month(Datex). Sort on those, MyYear first. Regards, Bill Mosca Founder ... From: Joe...
Bill Mosca
wrmosca
Offline Send Email
Jan 3, 2005
4:27 am
22083
The only way i could get it to work was to go by year then month as so; SELECT DISTINCTROW Format$(qryOnlyPreviousDates.Datex,' yyyy mm') AS [Date By Month],...
A.M.Connolly
smiley2004_10
Offline Send Email
Jan 3, 2005
5:03 am
22084
A.D. Thanks for that solution. It works well most of the time. I noticed two problems: First, I notice that if the user hides the CustomerID column in the ...
goodbruder
Offline Send Email
Jan 3, 2005
8:28 am
22085
Chris, Your overall requirement is understood to be as follows (a) The subform is in datasheet view. (b) Column named CustomerID is hidden. (c) Matching record...
A.D.Tejpal
adt_y
Offline Send Email
Jan 3, 2005
2:26 pm
22086
How are you all iam a new user of access and if any one can give me from where can i start to be professionals in access .....at the moment i know how to do a...
bdf131040
Offline Send Email
Jan 3, 2005
5:06 pm
Messages 22057 - 22086 of 76984   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