why doesnt this simple first. last. routine work330 (8/29/2006 3:42:58 AM) comp.soft-sys.sas Hi I am having one of those days where i left my mind at home in the rush to work. I cant quite get this simple longitudinal data problem to work. options obs=max; data test_data; infile datalines missover p... queanbeyan
Assistance to move array values left.573 (5/30/2006 5:09:30 AM) comp.soft-sys.sas Hi Long day today ... got the flu... brain not working...... I am trying to do the following with my sas dataset; i have id, age1 - age14 twinbirth; the values look something like this id=1, age1=10, age2=9,... queanbeyan
clearing all _user_ macros1638 (5/20/2006 12:01:17 AM) comp.soft-sys.sas Hi Often when I am developing code and I use SAS macros I need to clear the values of macros that have been established in previous runs of the code. This is to ensure that legacy values don't impact on curr... Doug
standard data analysis process028 (10/16/2005 7:30:33 AM) comp.soft-sys.sas Hi My agency is in the process of rolling out SAS9 and BI server and I am involved in trying to 'raise the bar' (or at lease to define the bar) in terms of general analysis and data work. We have about 100 ... Doug
EG 3047 (9/16/2005 11:31:05 PM) comp.soft-sys.sas Hi I am trying to get some assistance to write a really simple application add-in in C# or VB.net for EG 3. If you have some experience and have some commented code that you would care to share I would appr... Doug
SAS users group in thailand??030 (9/4/2005 8:35:52 AM) comp.soft-sys.sas Hi Does anyone know of a SAS users group in thailand? I will be on a working holiday there in the new year and I would like to network and possibly do a presentation if possible. Cheers Doug ... Doug
code using asp.net talking to sas dataset195 (3/7/2005 10:55:06 AM) comp.soft-sys.sas Hi I am trying to get up to speed with '.net' talking to sas and I am interested in having a look at some code (if anyone would care to share it) that provides a small demo of how to achieve this. I am usin... dougie
simple input332 (2/17/2005 10:24:37 AM) comp.soft-sys.sas Hi, i am trying to read the following into SAS and I can't get it right. data; id value value value value a 1 2 3 4 b 5 6 7 8 c 9 0 1 2 I get the data in excel in the above format I would like: id valu... dougie
example of proc spell246 (2/14/2005 10:39:15 PM) comp.soft-sys.sas Hi I am just finishing writing a user group presentation about old procs and I am trying to find some simple code that uses proc spell to achieve an outcome (any outcome will do). If you could describe what t... queanbeyan
server for running SAS9023 (2/7/2005 9:51:16 AM) comp.soft-sys.sas Hi, i am doing some costings for the purchase of a new server for my section. We currently run SAS8.2 on a quad box with 4 x pentium 3 700 processors (citrix server on win 2000), but I would like to upgrade ... dougie
SAS 9 Management Console Questions143 (12/2/2004 11:05:15 AM) comp.soft-sys.sas 1 - Has anyone used the license manager from Management Console - I cant get it to work as I think it should. Surely we should be able to load a SID into it and deploy it from there, shouldnt we? 2 - Has anyon... phil875(38)
assistance with array related data322 (1/11/2005 7:07:13 AM) comp.soft-sys.sas hi I know that this is fairly simple but I just can't get this to work. I am tryng to populate an array based on a merged file using a datastep but it ain't working. thanks data cust; input id ben $; datal... queanbeyan(66)
unusual procs836 (1/25/2005 1:41:01 PM) comp.soft-sys.sas Hi, I am putting together a light hearted paper for a local SAS group. The paper is on unusual or undocumented procs; To date I have: proc delete proc explode proc nickname. I would love to include any ot... queanbeyan(66)
error message after a merger329 (1/27/2005 4:10:58 AM) comp.soft-sys.sas Hi guys, I am merging 10 data sets. I have double check that there is no duplicate key of variable "hs6". The following is my code: data i; merge lib.sd92 lib.sd93 lib.sd94 lib.sd95 lib.sd96 lib.sd97 lib.sd98... grace_95616(5)
ODS to Excel without unwanted tags131 (1/31/2005 12:22:37 PM) comp.soft-sys.sas Dear SAS-L'ers (first post from my shadow id, can't set reply-to, don't know how - if at all - it will appear in SAS-L) as we've learned we can create an Excel table using the ODS HTML FILE='anyname.XLS' tech... rb_nomail(5)
AW: simple input125 (2/17/2005 10:41:13 AM) comp.soft-sys.sas Doug, try this: data daten; input id $ value1 value2 value3 value4; cards; a 1 2 3 4 b 5 6 7 8 c 9 0 1 2 ; run; proc transpose data=daten; by id; run; HTH, Michael > -----Urspr�ngliche Nachricht----- > Von:... Michael.Meyners(3)
why doesnt this simple first. last. routine work330 (8/29/2006 3:42:58 AM) comp.soft-sys.sas Hi I am having one of those days where i left my mind at home in the rush to work. I cant quite get this simple longitudinal data problem to work. options obs=max; data test_data; infile datalines missover p... queanbeyan(66)