i want to 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
hey thanks. Now i gor correct output.
data tables (drop = i j);
array table{10} table1-table10;
do i = 1 to 10;
do j = 1 to 10;
table{j} = i * j;
end;
output;
end;
run;
data tables (drop = i j);
array table{10} table1-table10;
do i = 1 to 10;
do j = 1 to 10;
table{j} = i * j;
end;
output;
end;
run;
thanq for ur reply.BUT ur code is not giving required result;
@praveenkotte wrote:
thanq for ur reply.BUT ur code is not giving required result;
Please show the log of the code you ran. The posted data is most likely the result of the OUTPUT statement in the wrong position.
hey thanks. Now i gor correct output.
data tables (drop = i j);
array table{10} table1-table10;
do i = 1 to 10;
do j = 1 to 10;
table{j} = i * j;
end;
output;
end;
run;
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
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.