BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
newbi
SAS Employee

Would someone be able to offer advice on how I can do the following:

Based on date_key i would like to create new column which can provide Sales start day (1st day of sale).  For example:

Date_KEYRIDSales
03/01/20141$1000
03/02/20141$1500
03/03/20141$2000
03/05/20142$1000
03/06/20143$5000

Result i want:

Date_KEYRIDSalesSales Start Day
03/01/20141$10001
03/02/20141$15002
03/03/20141$20003
03/05/20142$10001
03/06/20143$50001

Thanks in advance.

1 ACCEPTED SOLUTION

Accepted Solutions
Linlin
Lapis Lazuli | Level 10

data want;

set have; /* your dataset name */

by rid;

if first.rid then sales_start_day=0;

sales_start_day+1;

run;

View solution in original post

3 REPLIES 3
Linlin
Lapis Lazuli | Level 10

data want;

set have; /* your dataset name */

by rid;

if first.rid then sales_start_day=0;

sales_start_day+1;

run;

Quentin
Super User

Hi,

Not sure I follow your logic, but I think below will make your WANT table:

data want;

  set have;

  by RID Date_Key;

  if first.RID then SalesStartDay=0;

  if first.Date_Key then SalesStartDay ++ 1;

run;

HTH

newbi
SAS Employee

Thanks for all your help.

Linlin solutin worked:

data want;

set have; /* your dataset name */

by rid;

if first.rid then sales_start_day=0;

sales_start_day+1;

run;

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

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