BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
jay_q
Calcite | Level 5


Hello, all.

Does anyone know if Tagsets.TableEditor can be installed on SAS Enterprise Guide  and how? Many thanks in advance.

1 ACCEPTED SOLUTION

Accepted Solutions
Chevell_sas
SAS Employee

Jay,

You have the option of installing this tagset to a location where everyone has access to location by using an ODS PATH statement pointing to the location where it should be stored. We can add the new library to the beginning of the search path using the PREPEND option on the ODS PATH statement. This would require that these two statements be added to each  program or to an autoexec. Options two would be to add this to the SASHELP location. See the note attached for more information.

http://support.sas.com/kb/32/394.html

libname perm '/u/tagsets/';

ODS PATH(PREPEND) perm.templat(update);

/* Include code */

SASHELP

________

ods path sashelp.tmplmst(update);

/* Include code */

View solution in original post

2 REPLIES 2
jay_q
Calcite | Level 5

BTW, The SAS EG I'm using is on the unix server

Chevell_sas
SAS Employee

Jay,

You have the option of installing this tagset to a location where everyone has access to location by using an ODS PATH statement pointing to the location where it should be stored. We can add the new library to the beginning of the search path using the PREPEND option on the ODS PATH statement. This would require that these two statements be added to each  program or to an autoexec. Options two would be to add this to the SASHELP location. See the note attached for more information.

http://support.sas.com/kb/32/394.html

libname perm '/u/tagsets/';

ODS PATH(PREPEND) perm.templat(update);

/* Include code */

SASHELP

________

ods path sashelp.tmplmst(update);

/* Include code */

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

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