BookmarkSubscribeRSS Feed
plkkw
Calcite | Level 5

show date in short month name, e.g. Jan, feb. I found that there is only MONNAME in information map. how do I add such user-defined format for date in informartion map? I used sas 9.3

4 REPLIES 4
Jagadishkatam
Amethyst | Level 16

Hi, you can pull the short date form using the below code if the date is in numeric format.

data date;

date=substr(put(today(),date9.),3,3);

run;

If the date is in month name then you can use the substr function to extract the first three letters from the month name like

sunstr(monname,1,3);

Thanks,

Jag

Thanks,
Jag
plkkw
Calcite | Level 5

Hi Jag,

I have question that In which part of Web Report Studio and Information Map Studio run the code:

============

data date;

date=substr(put(today(),date9.),3,3);

run;

============

Please help to indicate.

shivas
Pyrite | Level 9

Hi,

You can do this in IMAP by just changing the valid width range to 3(for monname format).

Thanks,

Shiva

Imap.png

plkkw
Calcite | Level 5

HI shivas,

Thanks

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
  • 4 replies
  • 3883 views
  • 2 likes
  • 3 in conversation