-
WSwillyboy
AskWoody LoungerSeptember 12, 2001 at 5:36 pm in reply to: Computing the default value for a field (Access 97) #542107Just add the two fields:
Expr1: [Date Entered]+[Days to Complete] -
WSwillyboy
AskWoody LoungerIf you have a form (or switchboard form) set to open automatically on startup, I wouldn’t add more code, but I would change the “Allow Design Changes” property for that form, from “All Views”, to “Design View Only”. This way, the properties window will only display, when the form is in design view. There should be no reason for the users to see the properties window. In fact, I would do this for all forms before letting others use the database.
-
WSwillyboy
AskWoody LoungerGo back to your original “On click” code (not the DCount code), and try this before you open the report:
DoCmd.SetWarnings False
Then add this after opening the report:
DoCmd.SetWarnings True
This should stop the systen generated message. (Always set warnings back to true, to catch any other errors that may occur).
-
WSwillyboy
AskWoody LoungerChange your query to a “Totals” query (click the button that looks sort of like an “E”, it’s actually the greek letter known as “sigma”). Now all of your fields should show “Group By” in the total line. Change each field except the case number field, to “First”. Sort the sequence number field “Ascending”. Now put “Is Not Null” as criteria for the consultant(name?) field. This will now only show the first record (based on sequence number) for each patient that has a consultant.
-
WSwillyboy
AskWoody LoungerIf the two tables are linked by the system number, there is no need to display the number twice or the date twice. Open your query in “Sql view” and use this sql (rename the fields and tables to match yours):
SELECT Table1.SysNum, Table1.dateA
FROM Table1 INNER JOIN Table2 ON Table1.SysNum = Table2.SysNum
WHERE (((Table1.dateA)=[Table2].[dateB]));
-
WSwillyboy
AskWoody LoungerSeptember 11, 2001 at 5:39 pm in reply to: Saving Append Query Validation Errors (Access 2000) #1788270Your validation rules cause your query to select records that pass the validation. Create a second query, similar to the first, except that now you want to re-word the validation to select records that would be rejected by the first query. In other words, if the first query only selected records where a particular field was less than 1000(this is just an example), then let the second query select records equal to or greater than 1000. Make this an append query to a new table(either design this new table yourself, or you can run a make table query one time(based on the second query) to create the new table. Now simply set up your database to always run both queries, instead of just your original query.
-
WSwillyboy
AskWoody LoungerIf you want a parameter query, then instead of my previous reply, create a new column in your query with the field name as an expression: Mid([YourTextFieldName],13,1). Then in the criteria of this new column put this: [Enter Value].
-
WSwillyboy
AskWoody LoungerI replied too quickly. You want to use this on the criteria line of your query, for the text field you mentioned: Mid([YourFieldName],13,1) =”value”. Replace “value” with the value you’re looking for.
-
WSwillyboy
AskWoody LoungerMID([FieldName],start_num,num_chars). For your query use: Mid([YourFieldName],13,1)
-
WSwillyboy
AskWoody LoungerSeptember 10, 2001 at 7:09 pm in reply to: Ordered timestamps to test a clocktime measure (OFFICE 97 SR2) #541731One more thought. You only say that some of the “Revtime” values are incorrect, so I assume the timestamp values are correct. If the timestamp values in a record are correct, and the formula that generates the “Revtime” is correct, then I think it may be that when the formula actually runs, it is using incorrect data sometimes(possibly due to stopping, starting?). What I’m saying is this: If you have correct data used as input to a valid formula, the results should always be correct. If this “Revtime” is generated on the fly (during data entry); something must be feeding incorrect values to the formula, even though correct timestamp values are being saved. Could the process that generates the “Revtime” values be separated from the rest of this process and run at a later time? In other words, could you create the “Revtime” values as a “batch” process using only completed records as input, instead of these values being created during data entry?
-
WSwillyboy
AskWoody LoungerSeptember 10, 2001 at 6:24 pm in reply to: Ordered timestamps to test a clocktime measure (OFFICE 97 SR2) #541722Instead of trying to fiqure out a more complex query, why not query for all records where the “Revtime” is too large, then compare this to the records from the query you already wrote (the one that finds records where no other record was started). If you compare the two results, you will see that any records in the new query that are not in your previous query, would be the records that you are looking for.
-
WSwillyboy
AskWoody LoungerSometimes it’s difficult to fiqure out a query by looking at it in design view. If you look at it in sql view, you will see what this query is really doing. You can see alias column names (if any), types of joins, sort order, etc…
-
WSwillyboy
AskWoody LoungerBecause of an established relationship, you can not run the make table and replace the existing table. You can run a delete query on the Access table(to delete all records), and then run an append query to grab the fresh data from the ODBC table. In other words, empty out the “Items” table, and then fill it up form the ODBC table. Caution: make sure the delete query runs against the “Item” table in your Access database, and not against the ODBC connected table.
-
WSwillyboy
AskWoody LoungerHave you tried the Access database wizard? You can quickly create and then test several inventory sample databases that you can alter to fit your needs. I have also seen free(and not free) inventory databases available for download. Anybody else have some recommendations?
-
WSwillyboy
AskWoody LoungerCharlotte’s reply is exactly what you’ll have to do. You can export your DataEase table as a delimited file that can then be imported into an Access database as a table. You can not directly import/export between Access and DataEase.
![]() |
Patch reliability is unclear. Unless you have an immediate, pressing need to install a specific patch, don't do it. |
SIGN IN | Not a member? | REGISTER | PLUS MEMBERSHIP |

Plus Membership
Donations from Plus members keep this site going. You can identify the people who support AskWoody by the Plus badge on their avatars.
AskWoody Plus members not only get access to all of the contents of this site -- including Susan Bradley's frequently updated Patch Watch listing -- they also receive weekly AskWoody Plus Newsletters (formerly Windows Secrets Newsletter) and AskWoody Plus Alerts, emails when there are important breaking developments.
Get Plus!
Welcome to our unique respite from the madness.
It's easy to post questions about Windows 11, Windows 10, Win8.1, Win7, Surface, Office, or browse through our Forums. Post anonymously or register for greater privileges. Keep it civil, please: Decorous Lounge rules strictly enforced. Questions? Contact Customer Support.
Search Newsletters
Search Forums
View the Forum
Search for Topics
Recent Topics
-
Global data centers (AI) are driving a big increase in electricity demand
by
Kathy Stevens
6 hours, 36 minutes ago -
Office apps read-only for family members
by
b
9 hours, 12 minutes ago -
Defunct domain for Microsoft account
by
CWBillow
6 hours, 4 minutes ago -
24H2??
by
CWBillow
1 hour, 13 minutes ago -
W11 23H2 April Updates threw ‘class not registered’
by
WindowsPersister
17 hours, 57 minutes ago -
Master patch listing for April 8th, 2025
by
Susan Bradley
11 hours, 11 minutes ago -
TotalAV safety warning popup
by
Theodore Nicholson
6 hours ago -
two pages side by side land scape
by
marc
2 days, 7 hours ago -
Deleting obsolete OneNote notebooks
by
afillat
2 days, 9 hours ago -
Word/Outlook 2024 vs Dragon Professional 16
by
Kathy Stevens
1 day, 11 hours ago -
Security Essentials or Defender?
by
MalcolmP
1 day, 14 hours ago -
April 2025 updates out
by
Susan Bradley
9 hours, 42 minutes ago -
Framework to stop selling some PCs in the US due to new tariffs
by
Alex5723
1 day, 8 hours ago -
WARNING about Nvidia driver version 572.83 and 4000/5000 series cards
by
Bob99
22 hours, 10 minutes ago -
Creating an Index in Word 365
by
CWBillow
2 days ago -
Coming at Word 365 and Table of Contents
by
CWBillow
12 hours, 44 minutes ago -
Windows 11 Insider Preview Build 22635.5170 (23H2) released to BETA
by
joep517
3 days, 4 hours ago -
Has the Microsoft Account Sharing Problem Been Fixed?
by
jknauth
3 days, 7 hours ago -
W11 24H2 – Susan Bradley
by
G Pickerell
3 days, 9 hours ago -
7 tips to get the most out of Windows 11
by
Alex5723
3 days, 7 hours ago -
Using Office apps with non-Microsoft cloud services
by
Peter Deegan
3 days ago -
I installed Windows 11 24H2
by
Will Fastie
1 day, 7 hours ago -
NotifyIcons — Put that System tray to work!
by
Deanna McElveen
3 days, 12 hours ago -
Decisions to be made before moving to Windows 11
by
Susan Bradley
6 hours, 9 minutes ago -
Port of Seattle says ransomware breach impacts 90,000 people
by
Nibbled To Death By Ducks
3 days, 21 hours ago -
Looking for personal finance software with budgeting capabilities
by
cellsee6
3 days, 5 hours ago -
ATT/Yahoo Secure Mail Key
by
Lil88reb
3 days, 5 hours ago -
Devices with apps using sprotect.sys driver might stop responding
by
Alex5723
4 days, 14 hours ago -
Neowin – 20 times computers embarrassed themselves with public BSODs and goofups
by
EP
4 days, 22 hours ago -
Slow Down in Windows 10 performance after March 2025 updates ??
by
arbrich
22 hours, 10 minutes ago
Recent blog posts
Key Links
Want to Advertise in the free newsletter? How about a gift subscription in honor of a birthday? Send an email to sb@askwoody.com to ask how.
Mastodon profile for DefConPatch
Mastodon profile for AskWoody
Home • About • FAQ • Posts & Privacy • Forums • My Account
Register • Free Newsletter • Plus Membership • Gift Certificates • MS-DEFCON Alerts
Copyright ©2004-2025 by AskWoody Tech LLC. All Rights Reserved.