Pastebin

Paste #2261: No description

< previous paste - next paste>

Pasted by tdn

Download View as text

libname orion 'c:\kursus\prg2\data32';

data foo;
	set orion.orders_midyear;
	array m{*} month1--month6;

	do i=1 to dim(m);
		if m{i}=. then m{i} = 0;
		else m{i}=m{i}*1.05;
	end;
	total=sum(of m[*]);
	drop i;
run;

New Paste


Do not write anything in this field if you're a human.

Go to most recent paste.