BookmarkSubscribeRSS Feed
MinKhee
Calcite | Level 5

Hi, I am trying to build a gantt chart using sas university edition. But it can only build by using proc sgplot. I am wondering if annotate can be used in SAS University Edition. This is my data code:

 

data mychart;

length activity $20;

input activity $1 day;

project= 'Activity' || trim (left(activity));

datalines;

A 2

B 4

C 10

D 6

E 4

F 5

G 7

H 9

I 7

J 8

K 4

L 5

M 2

N 6

;

run;

 

proc sort data=mychart;

by day;

run;

 

 

 

1 REPLY 1

sas-innovate-wordmark-2025-midnight.png

Register Today!

Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9. Sign up by March 14 for just $795.


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
  • 1 reply
  • 1116 views
  • 0 likes
  • 2 in conversation