BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Q1983
Lapis Lazuli | Level 10

data want (keep= ID mydate);

set want1;

run;

OUTPUT

ID    mydate
12    09/16/2015
15    06/02/2013
16    10/06/2016

 

 

ODS TAGSETS.ExcelXP file= "c:/want,xml";

PROC REPORT DATA= want headskip split='*' wrap nowd

 

COLUMNS _all_;

 

DEFINE mydate / Display style(column)= { cellwidth=80pt just=right} "mydate";

run

 

I want to remove any leading zeros that may exist.  The desired output would be

OUTPUT

ID    mydate
12    9/16/2015
15    6/02/2013
16    10/6/2016

 

Would tagattr be required for something like this??

 

 

1 ACCEPTED SOLUTION

Accepted Solutions
mdavidson
Quartz | Level 8

You could try something like this on your "want1" dataset:

 

data a;
date="01jan2018"d;
newdate=catx('/',month(date),day(date),year(date));
format date mmddyys10.0;
run;

View solution in original post

2 REPLIES 2
mdavidson
Quartz | Level 8

You could try something like this on your "want1" dataset:

 

data a;
date="01jan2018"d;
newdate=catx('/',month(date),day(date),year(date));
format date mmddyys10.0;
run;

Cynthia_sas
SAS Super FREQ

Hi:

  In the interest of completeness, you can get the results you want, in TAGSETS.EXCELXP by using a PICTURE format without using TAGATTR, as shown in the program code below:

data want (keep= ID mydate);
  infile datalines;
  input ID mydate : mmddyy.;
  format mydate date9.;
datalines;
12 09/16/2015
15 06/02/2013
16 10/06/2016
;
run;
  

proc format;
   picture dfmt (default=10) other='%m/%d/%Y' (datatype=date);
run;

ods excel file='c:\temp\wantxlx.xlsx';
ODS TAGSETS.ExcelXP file= "c:\temp\want.xml"
    style=htmlblue;

PROC REPORT DATA= want split='*' nowd;
 column id mydate mydate=d1 mydate=d2;
 DEFINE mydate / Display  "mydate*tagattr*(will get default format)"
  style(column)= {tagattr="Format:m/d/yyyy;"  just=right} ;
 define d1 / display f=dfmt. 'd1*no tagattr*only picture format'
  style(column)= {just=right} ;
 define d2 / display f=dfmt. 'd2*with tagattr*and picture format'
  style(column)= {tagattr="Format:m/d/yyyy;"  just=right} ;

run;

ods tagsets.excelxp close;
ods excel close;

The hitch with TAGSETS.EXCELXP is that as you can see below -- without a format and even using TAGATTR, with TAGSETS.EXCELXP, the output uses the SAS format for the column:

 

no_lead_zero.png

But, you can achieve what you want without making a character variable using a PICTURE format (or using TAGATTR).

 

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
  • 963 views
  • 2 likes
  • 3 in conversation