Viewing 15 posts - 1 through 15 (of 79 total)
Dugi, thanks for your help. What I specifically want to do is run Access 2003 on a Windows XP virtual machine on my Windows 2008 Server. Does anyone have any...
May 11, 2012 at 6:44 am
I've reached a temporary solution. I added a space ( " "+ [TableB.Col1] ) to the second Select statement in the Union query, inserting a space before each cell of...
February 10, 2011 at 8:04 am
Euguene, IT WORKS! I appreciate your help. I didn't think about the MIN function. 🙂
September 27, 2010 at 7:33 am
Is it possible to translate this into Access 2003 DB could interpret?
Once again, I appreciate your response. My code apparently does not take
September 27, 2010 at 7:00 am
Shawn,
Thanks for your suggestion. When I goto Google, I just get so many hits, I don't know where to begin.
As it turns out, in Access 2003 during the...
May 7, 2010 at 9:36 am
GSquared (4/24/2009)
June 18, 2009 at 8:27 am
Chris Morris, Jack, et. all.
Much appreciative of the code you provided. Works to a Tee. I'm much more in debt to the thought process of the query you wrote;...
April 8, 2009 at 10:36 am
Jack Corbett (4/6/2009)
Chris Morris (4/6/2009)
It's one of those, Jack, but the requirements are so ambiguous it's kinda hard to tell 🙂
Exactly! I don't drink but posts like these could...
April 8, 2009 at 7:14 am
Jack Corbett (4/6/2009)
April 6, 2009 at 1:55 pm
JacekO (4/6/2009)
The line
GROUP BY Col_1, Col_2, Col_3
should be
GROUP BY Col_1, Col_2, Col_5
5 instead of 3
If it is not this then I think I...
April 6, 2009 at 1:28 pm
Jack Corbett (4/6/2009)
ID Col1 Col2 Col3 ...
April 6, 2009 at 1:10 pm
JacekO (4/6/2009)
SELECT Col_1, Col_2, Col_3, Col_4, Col_5
FROM Table
INNER JOIN (
SELECT
MAX(Col_3) AS max_col_3,
MAX(Col_4)...
April 6, 2009 at 12:58 pm
Jack, thanks for the guide, i reposted by reply coded as table data to the previous poster. I hope this makes a difference. I'll review your link in more detail....
April 6, 2009 at 12:33 pm
GSquared (4/6/2009)insert into #T (Col1, Col2, Col3, Col4, Col5)
select 'Example', 1, getdate(), getdate(), 1 union all
select 'Example', 1, getdate()+1, getdate()+1, 1 union all
select 'Example', 2, getdate(), getdate(), 2;
[/code]
GSquare, (and thus...
April 6, 2009 at 12:29 pm
Matt,
would this trigger work if the update was done on a linked table from Access? I support users touching tables directly, but not writing UPDATE statements. They go into...
March 16, 2009 at 1:49 pm
Viewing 15 posts - 1 through 15 (of 79 total)