Hi,
Any one can give '#' table code (example)
Thanks,
Suresh
Did you mean Hash Table ?
Yes please !
There are lots of example at this Forum , search it you will get answer.
This example maybe too difficult for you . The code is used to split table.
data l;
input name $ age;
cards;
q 1
. .
e 3
. .
r 7
. .
w 6
;
run;
data _null_;
if _n_ eq 1 then do;
if 0 then set l ;
declare hash ha1(ordered:'a');
declare hiter hi1('ha1');
declare hash ha2;
ha1.definekey('name','age');
ha1.definedata('ha2');
ha1.definedone();
end;
set l end=last;
if ha1.find()=0 then ha2.add();
else do;
ha2=_new_ hash(multidata:'y');
ha2.definekey('name','age');
ha2.definedata('name','age');
ha2.definedone();
ha2.add();
ha1.add();
end;
if last then do; n=-1;
do while(hi1.next()=0);
n+1;
if n ne 0 then ha2.output(dataset: cats('l',n));
end;
end;
run;
Ksharp
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.