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

Catch up on SAS Innovate 2026

Nearly 200 sessions are now available on demand with the SAS Innovate Digital Pass.

Explore Now →
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
  • 2722 views
  • 0 likes
  • 2 in conversation