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

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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
  • 2090 views
  • 0 likes
  • 2 in conversation