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

Hi

 

I need your help as I want to add text to my sas code, text that I can see in the output. As far as I understand, I should use /*text*/, I did it but it does not shown in the output

 

What is my mistake?

 

Thanks a lot!

1 ACCEPTED SOLUTION

Accepted Solutions
PeterClemmensen
Tourmaline | Level 20

/* */ is for commenting code.

 

What kind of text do you want to add and where?

 

If you want to add a title to your output use the title statement as

 

title 'Upper Title';
title2 'Lower Title';
proc print data = sashelp.cars(obs = 10);
run;
title;

View solution in original post

1 REPLY 1
PeterClemmensen
Tourmaline | Level 20

/* */ is for commenting code.

 

What kind of text do you want to add and where?

 

If you want to add a title to your output use the title statement as

 

title 'Upper Title';
title2 'Lower Title';
proc print data = sashelp.cars(obs = 10);
run;
title;

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register 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
  • 2303 views
  • 1 like
  • 2 in conversation