Started 6 days, 17 hours ago (2009-12-09 12:55:00)
by wrmosca
Richard
Have you installed the latest Service Pack? That might fix it.
Started 1 year ago (2008-12-02 16:52:00)
by sean
SOLVED:
Not sure why I didn't think of using a IN SELECT but that is how it worked.
So here is the code now:
strSQL = "DELETE " & strLocVar & ".* FROM " & strLocVar & " WHERE " & strLocVar & "." & strLocFld & _
"ID NOT IN (SELECT " & strRemTbl & ".Id FROM " & strRemTbl & ")"
DoCmd.RunSQL strSQL
Started 1 week, 6 days ago (2009-12-02 11:58:00)
by pbaldy
One way here:
http://www.mvps.org/access/forms/frm0012.htm
another:
http://allenbrowne.com/ser-24.html
Started 1 month, 1 week ago (2009-11-04 14:18:00)
by wrmosca
Mark
Take a look at this article: http://msdn.microsoft.com/en-us/library/aa338202.a
spx
Started 2 months ago (2009-10-14 00:57:00)
by vks1711
Many Thanks Estuardo,
I will give it a try from the way you sound I believe it will work.
Started 2 months ago (2009-10-12 14:46:00)
by wrmosca
ShadeTree
You can use DatePart to get that.
DatePart("ww",#1/2/2010#)
Started 2 months, 1 week ago (2009-10-05 08:59:00)
by RPFeynman
Robertomac,
If the two tables are linked in a one to many you should have no problem with your query. Your result indicates to me that your getting a
crossproduct of the two tables.
Art
Started 2 months, 3 weeks ago (2009-09-26 05:13:00)
by abloom
memo field
best practices?
Hello,
This is a general question, but one that keeps arising:
Say I have a table that gets heavily used in queries, forms, etc. (e.g. a "sales order"). Is there any problem with adding a memo field to this table?
This would typically be for 'notes' or 'comments', and would be populated a small percentage of the...
Started 2 months, 3 weeks ago (2009-09-23 05:42:00)
by pbaldy
Welcome to the site. I think more info about what you're trying to do to give a meaningful answer. It sounds like you could have a table of
standardized parameters, which would allow you to compare a specified value against the standard values.