BookmarkSubscribeRSS Feed
deleted_user
Not applicable
I get that message when running my sas/graph
and some values get truncated :

NOTE: Value of IDVAR(ObjectName) truncated to 32 characters.


is there any way to fix that ?
2 REPLIES 2
Cynthia_sas
Diamond | Level 26
Hi:
Per this note:
http://support.sas.com/kb/00/807.html
the max length for Axis values is 32 characters.

for more help with SAS/Graph questions, you should consider contacting Tech Support, as this is not really a Base Reporting procedure question (PRINT, REPORT, TABULATE) and is not related to ODS.

cynthia
mikek_sas
SAS Employee
You can use an AXIS statement to override the limitation. For example:

goptions reset=all;
data test;
x='123456789012345678901234567890123456';
run;
proc gplot; plot x*x/vaxis=axis1;
axis1 value=('123456789012345678901234567890123456');
run;

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 1037 views
  • 0 likes
  • 3 in conversation