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;

sas-innovate-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!

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
  • 1116 views
  • 0 likes
  • 3 in conversation