B
Beginner
I have a table with two fields SID No-Rep, SID.
If field Split Type is NOT NULL, then values in
SID No-Rep should be updated with SID values.
The following Update query fills doesnot update the values
from the field in the required records. Instead the update
is like [BILLING].SID
UPDATE [BILLING] SET [BILLING].[SID No-Rep] = (SELECT SID
FROM [BILLING])
WHERE ((([BILLING].[Split Type]) Is Null));
Any help is appreciated
Thanks in advance
Beginner
If field Split Type is NOT NULL, then values in
SID No-Rep should be updated with SID values.
The following Update query fills doesnot update the values
from the field in the required records. Instead the update
is like [BILLING].SID
UPDATE [BILLING] SET [BILLING].[SID No-Rep] = (SELECT SID
FROM [BILLING])
WHERE ((([BILLING].[Split Type]) Is Null));
Any help is appreciated
Thanks in advance
Beginner