Do you have your "dummy" values in a dataset? If so, are they a one-to-one match for the base data (the first dummy value goes with the first record in base data)?
If so:
Data want;
merge abgu dummydata;
run
Should work.
If you don't have the dummy values in a data set then make one.
If the relationship is NOT one-to-one you will need to provide explicit rules on how to assign the first "dummy" value to the correct record(s) in the base dataset.
... View more