K
Kentucky5
I am trying to use the SET function in my query, How do
you use that if you have multiple fields that need to be
set?
UPDATE Final INNER JOIN [From] ON [Final].[ID] = [From].
[ID] SET Final.Journal = [Final].[Journal]+": " & [From].
[JournalDate] &"- "& [From].[Journal]
WHERE (((From.Journal) Is Not Null));
Above is the code
So say I have 20 more fields that need to be set I was
trying
UPDATE Final INNER JOIN [From] ON [Final].[CaseID] =
[From].[CaseID] SET Final.Journals = [Final].[Journals]
+": " &"- "& [From].[Journals] & Final.EntryDate = [From].
[EntryDate] & Final.Region = [From].[Region]
WHERE (((From.Journals) Is Not Null));
I have more than this but when I run this it says it is
updating the table but doesn't, and I don't get any error
messages
you use that if you have multiple fields that need to be
set?
UPDATE Final INNER JOIN [From] ON [Final].[ID] = [From].
[ID] SET Final.Journal = [Final].[Journal]+": " & [From].
[JournalDate] &"- "& [From].[Journal]
WHERE (((From.Journal) Is Not Null));
Above is the code
So say I have 20 more fields that need to be set I was
trying
UPDATE Final INNER JOIN [From] ON [Final].[CaseID] =
[From].[CaseID] SET Final.Journals = [Final].[Journals]
+": " &"- "& [From].[Journals] & Final.EntryDate = [From].
[EntryDate] & Final.Region = [From].[Region]
WHERE (((From.Journals) Is Not Null));
I have more than this but when I run this it says it is
updating the table but doesn't, and I don't get any error
messages