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

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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
  • 1383 views
  • 0 likes
  • 2 in conversation