BookmarkSubscribeRSS Feed
deleted_user
Not applicable
Hi !

I do not know how to access it ?

Thanks! Message was edited by: sasnewbee
2 REPLIES 2
art297
Opal | Level 21
You have to be more specific. From what you have provided one can only guess. My guess is that you want to export your data to a text file. If that is correct, you can either use proc export or, if you need more control, take a look at:

http://kb.iu.edu/data/acxh.html

HTH,
Art
Cynthia_sas
SAS Super FREQ
Hi:
Poor JOHN SMITH is really getting a workout! Is this data and task at all related to your previous posts? Like these??
http://support.sas.com/forums/message.jspa?messageID=40884#40884
http://support.sas.com/forums/thread.jspa?messageID=39405駭
http://support.sas.com/forums/thread.jspa?messageID=39561骉
http://support.sas.com/forums/thread.jspa?messageID=39972鰤
http://support.sas.com/forums/thread.jspa?messageID=40211鴓

You ask this question in your post:

Basically, T_LST table is a work table that is created, So I do not know how to access it ?


You would access T_LST by either a ONE-level or TWO-level name in a DATA step program. Either WORK.T_LST or just T_LST. If you mean that your SAS session ends and you need to get to T_LST in a new session, then you would either have to run your SQL step again or create T_LST in a permanent library. Something like:
[pre]
libname KEEPABIT 'c:\temp\mydata';

proc sql;
create table KEEPABIT.T_LST as select
a.Cust_ID, a.S_ID, a.fld_txt
from Pty_nm
group by 1, 2;
quit;


*** OR;

proc sort data=work.t_lst out=keepabit.t_lst;
by ...;
run;
[/pre]

About your code:
[pre]
If first.s_id then lngname = ' ';
Some kind of loop - Trim(fld_txt) ||

If last.s_id then Output;
[/pre]

I believe that "Some kind of loop - Trim(fld_txt) || " has been explained or discussed in some of the answers to your previous posts.

cynthia

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
  • 633 views
  • 0 likes
  • 3 in conversation