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
SAS Super FREQ
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-2024.png

Join us for SAS Innovate April 16-19 at the Aria in Las Vegas. Bring the team and save big with our group pricing for a limited time only.

Pre-conference courses and tutorials are filling up fast and are always a sellout. Register today to reserve your seat.

 

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

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