BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Aman4SAS
Obsidian | Level 7

Hi All,

My Code id below:

%macro model();
%do i = 1 %to 4;
ods trace on;
proc mixed data=kc.LC_15July;
class org_id;
model dose= &&K&i./solution;
ods output solutionf=kc.model_K&i.;
run;
quit;
ods trace off;
%end;
%mend;
%
model();

I am having problem to make my all programe automate due to the variable of output dataset ,length of variable "effect" is $20. , which is truncating excat name of variable .

can i increase the length of variable "effect" during creation , so i will get complete name.

Thanks in advance.

1 ACCEPTED SOLUTION

Accepted Solutions
1 REPLY 1

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
What is ANOVA?

ANOVA, or Analysis Of Variance, is used to compare the averages or means of two or more populations to better understand how they differ. Watch this tutorial for more.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 1 reply
  • 1694 views
  • 0 likes
  • 2 in conversation