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

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