i want create mathematical tabels from 1 to 10 ?
the ouput should be like this
one_table two_table three_table ---------- ten_table
1 2 3 10
2 4 6 20
3 6 9 30
4 8 12 40
5 10 15 50
6 12 18 60
7 14 21 70
8 16 24 80
9 18 27 90
10 20 30 100
data want;
format one two three four five six seven eight nine ten 3.;
array m {*} _ALL_;
do i=1 to 10;
do j=1 to 10;
m(j)=i*j;
end;
output;
end;
drop i j;
run;
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.