BookmarkSubscribeRSS Feed
michellel
Calcite | Level 5

Hi,

I have a question about how to calculate day difference from the first date within a group (ID). Thanks much for your answer.

My data looks like as below. There are two columns (ID, date) and some other columns, which I did not show here but I need keep. I need create a new variable date_diff to show day difference from the first date within each ID. I showed a example of ID=1 as below for how I need calculate.

ID     date               date_diff

1     06JUL2006          0

1     23JUL2006     23JUL2006 - 06JUL2006

1     08AUG2007     08AUG2007 - 06JUL2006

2     03DEC2004

2     01JAN2005

2 REPLIES 2
Astounding
PROC Star

Assuming your data are sorted properly, by ID DATE, here's an elegant way:

data want;

   set have;

   by id;

   date_diff + dif(date);

   if first.id then date_diff=0;

run;

(Of course, beauty is in the eye of the beholder.)  Good luck.

michellel
Calcite | Level 5

it works! Thanks Astounding!

sas-innovate-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 3328 views
  • 2 likes
  • 2 in conversation