Search the web
Sign In
New User? Sign Up
ms_access · Help and advice for users of MS access
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

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 13581 - 13610 of 21712   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
13581
Group, I am trying to have access add a hard return after the short_desc data so that resolution_resp starts about two lines below the short_desc field. I am...
Isaiah Vi
isaiah_vi
Offline Send Email
Apr 2, 2004
2:07 am
13582
Try: "Short description of issue: " & [short_desc] & vbCrLf & "Resolution Response: " & [resolution_resp] "Good people do not need laws to tell them to act...
Williams, Benson E.
benwill99999...
Offline Send Email
Apr 2, 2004
2:17 am
13583
="Short description of issue: " & [short_desc] & Chr(13) & Chr(10) & Chr(13) & Chr(10) & "Resolution Response: " & [resolution_resp] John Viescas, author ...
John Viescas
jlviescas
Offline Send Email
Apr 2, 2004
3:13 am
13584
You could also use vbNewLine which is more intuitive and easy to remember. ="Short description of issue: " & [short_desc] & vbNewLine & "Resolution Response:...
Lonnie Johnson
prodevmg
Offline Send Email
Apr 2, 2004
2:38 pm
13585
Is there a way to record on a report the last date actually entered in a field? Here is what I'm trying to achieve: If the manager runs a report from 01/01/04...
Dave Moreau
airportpalm
Offline Send Email
Apr 2, 2004
3:43 pm
13586
=Max(MyDate) Tom Hamilton Department of Human Assistance Sacramento County (916) 875-2758 Office (916) 601-6174 Mobile ... Is there a way to record on a report...
Hamilton. Tom
tom_hamilton...
Offline Send Email
Apr 2, 2004
3:55 pm
13587
Dave- Try adding a text box with this in the Control Source: =Max([MyDateField]) .. where MyDateField is the name of the date field in your Record Source. John...
John Viescas
jlviescas
Offline Send Email
Apr 2, 2004
4:19 pm
13588
I have a form that reads a query that joins two tables. It displays two description text fields when they are different: Select...where key1 = key2 and...
Steve Thomas
sptent
Offline Send Email
Apr 2, 2004
7:14 pm
13589
Thank you all that responded! It works like a charm! Thanks, Isaiah Vi IT Analyst County of San Mateo Human Services Agency Business Systems Group 400 Harbor...
Isaiah Vi
isaiah_vi
Offline Send Email
Apr 2, 2004
8:16 pm
13590
Steve- It's not the form, it's your query. Please post the SQL from the query and a brief description of the tables involved (including Primary Keys). John...
John Viescas
jlviescas
Offline Send Email
Apr 2, 2004
9:45 pm
13591
I created a form from a table using the form wizard and all was well until I decided to add another field to the table. It is a lookup field, [MemberType],...
holein_one2001
Offline Send Email
Apr 2, 2004
10:12 pm
13592
Mark- Did you click the Combo Box control in the Toolbox and drag and drop the MemberType field from the field list, or did you just add the combo box and set...
John Viescas
jlviescas
Offline Send Email
Apr 2, 2004
11:39 pm
13593
John V.: You are sending these e-mails to the wrong person. My name is Denny G. and I am at giaruso@.... Regards, Denny ... From:...
Denny G.
bunkyfoly
Offline Send Email
Apr 2, 2004
11:55 pm
13594
Hi Group, Has anyone found a "workaround" for this known bug in Access2K where the SendObject function silently fails due to too many characters in the email...
Isaiah Vi
isaiah_vi
Offline Send Email
Apr 3, 2004
12:25 am
13595
I have some data that I would like to merge or combine together, so I am asking for some help. The data would be similar as follows: 1st Initial name 1st...
rubdel
Offline Send Email
Apr 3, 2004
12:48 am
13596
Very strange data. A Totals query might help: SELECT [1st Initial], [name], Max([1st qtr]) As FirstQtr, Max([2nd qtr]) As SecondQtr, Max([3rd qtr]) As...
John Viescas
jlviescas
Offline Send Email
Apr 3, 2004
1:04 am
13597
John, My Toolbox doesn't have a field list from which to choose the desired field. It just has icons for all the Access controls which I can drag and drop to...
ME
holein_one2001
Offline Send Email
Apr 3, 2004
4:50 am
13598
Mark- Choose Field List from the View menu or click the Field List button on the toolbar when you have the form in Design view. Click the Combo Box in the ...
John Viescas
jlviescas
Offline Send Email
Apr 3, 2004
12:28 pm
13599
John, THANKS! Worked like a charm. Mark Espinosa Newbie ... http://us.click.yahoo.com/mOAaAA/3exGAA/qnsNAA/q7folB/TM ... __________________________________ Do...
ME
holein_one2001
Offline Send Email
Apr 3, 2004
3:43 pm
13600
Works beautifully on a month to month basis...can't seem to get it to work on the year end totals. It grabs Jan 1 and 31 and then stops for the year end. Your...
Dave Moreau
airportpalm
Offline Send Email
Apr 3, 2004
7:52 pm
13601
Dave- I would have to know more about the structure of your report and how you're grouping it. Max([MyDateField]) should work both for group footers (for the ...
John Viescas
jlviescas
Offline Send Email
Apr 4, 2004
8:01 pm
13602
I have a user that when entering data will often recieve an error stating her data may not be saved; sometimes it is saved and other times it is not. This...
yitbos5@...
yitbos5
Offline Send Email
Apr 5, 2004
4:45 pm
13603
... It is possible that you have record locking enabled in the properties of your database. What Access does with Lock Record is that it really locks a whole...
Brett Collings
zkbac
Offline Send Email
Apr 5, 2004
8:08 pm
13604
Here's the SQL: SELECT mapCLAIMS_MAPPING.[BLUOUT Column], mapCLAIMS_MAPPING.Definition, tblDEFINITIONS_ELEMENTS_BLUOUT.DEFINITION FROM mapCLAIMS_MAPPING LEFT...
Steve Thomas
sptent
Offline Send Email
Apr 5, 2004
8:57 pm
13605
If you have both users sharing the same database with all the tables, queries, forms, reports, and modules -- that is a bad idea. You should split the...
John Viescas
jlviescas
Offline Send Email
Apr 5, 2004
9:10 pm
13606
Steve- For a multi-table query to be updatable, the join must be defined from the Primary (or unique) Key in one table to a foreign key in the other table. You...
John Viescas
jlviescas
Offline Send Email
Apr 5, 2004
9:59 pm
13607
... I hate it when I miss the obvious :) Brett [Non-text portions of this message have been removed]...
Brett Collings
zkbac
Offline Send Email
Apr 5, 2004
10:25 pm
13608
hi, i am trying to figure out how to achive the following... i have two fields in the same table, end_date and status. what i want to do is, if current date >...
bhushangiri
Offline Send Email
Apr 5, 2004
11:11 pm
13609
Well you learn something new every day. I wondered how Access used keys, when you don't have to define them. But now I know. I made one the PK, and I guess...
Steve Thomas
sptent
Offline Send Email
Apr 5, 2004
11:51 pm
13610
How does Access (any version) handle those occasional "collisions"? Error message...crash the dbase, or just unable to update the record at this time, sort...
Dave Moreau
airportpalm
Offline Send Email
Apr 6, 2004
3:13 am
Messages 13581 - 13610 of 21712   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