So my code worked, I honestly did so many hit and trials that I really am not sure what made it work, will continue my R&D on that later. But I wanted to understand a very basic purpose of a hash table here: I have a dataset abc, which gets the values from dataset xyz, then what purpose does the hash table serve? Does hh help abc pick values from xyz based on unique phoneno values? data abc; IF _n_ = 1 THEN DO; dcl hash hh (dataset: ''xyz"); hh.definekey ('phoneno'); hh.definedone(); end; set xyz; run;
... View more