T
Tom
I have an update query that is supposed to update one local table from another
local table:
UPDATE
tblDmdYearlyReviewByMonthSummary RIGHT JOIN
tblDmdYearlyReviewByMonthSummary_KW ON
tblDmdYearlyReviewByMonthSummary.[Loc ID] =
tblDmdYearlyReviewByMonthSummary_KW.[Loc ID]
SET
tblDmdYearlyReviewByMonthSummary.[# Dem] = qryDmdYearlyReviewByMonth_KW.[#
Dem],
tblDmdYearlyReviewByMonthSummary.[Avg Dem] = qryDmdYearlyReviewByMonth_KW.[Avg
Dem];
This is similar to several others I have for this particular job. They run
without incident. But when I try to execute this one, I get an "Enter Parameter
Value" prompt with "qryDmdYearlyReviewByMonth_KW.# Dem" displayed above the
input field.
I'm not asking for a value. I've checked the parameter window, and it's empty.
Then I thought perhaps Access (2000) didn't like the "#" sign. Changing this
hasn't changed getting the prompt. I don't know why this is happening. Does
anyone else have an idea/suggestion?
I'm beginning to think perhaps the parameter prompt I'm getting is merely a
symptom of a different problem. "Avg Dem" is a Long Int (auto) in the summary
table I wish to update. It's a decimal (4,0) in the temp table I'm getting the
value from. Could *this* be a problem?
Any help would be appreciated. Thanks in advance,
Tom
local table:
UPDATE
tblDmdYearlyReviewByMonthSummary RIGHT JOIN
tblDmdYearlyReviewByMonthSummary_KW ON
tblDmdYearlyReviewByMonthSummary.[Loc ID] =
tblDmdYearlyReviewByMonthSummary_KW.[Loc ID]
SET
tblDmdYearlyReviewByMonthSummary.[# Dem] = qryDmdYearlyReviewByMonth_KW.[#
Dem],
tblDmdYearlyReviewByMonthSummary.[Avg Dem] = qryDmdYearlyReviewByMonth_KW.[Avg
Dem];
This is similar to several others I have for this particular job. They run
without incident. But when I try to execute this one, I get an "Enter Parameter
Value" prompt with "qryDmdYearlyReviewByMonth_KW.# Dem" displayed above the
input field.
I'm not asking for a value. I've checked the parameter window, and it's empty.
Then I thought perhaps Access (2000) didn't like the "#" sign. Changing this
hasn't changed getting the prompt. I don't know why this is happening. Does
anyone else have an idea/suggestion?
I'm beginning to think perhaps the parameter prompt I'm getting is merely a
symptom of a different problem. "Avg Dem" is a Long Int (auto) in the summary
table I wish to update. It's a decimal (4,0) in the temp table I'm getting the
value from. Could *this* be a problem?
Any help would be appreciated. Thanks in advance,
Tom