BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
asobs
Calcite | Level 5

Need assistance finding DOB with a start date and age. Also has to include a do loop. 

 

Age is 40.

Start date is February 15, 2001.

 

My script so far:

 

data birth;

     Age = 40;

     Start = '15Feb2001'd;

Bday=Start-Age;

do Age = 1 to 90 until (Start lt '15Feb2001'd);

     output;

          end;

run;

 

proc print data=birth;

format Start Bday mmddyy10.;

run; 

1 ACCEPTED SOLUTION

Accepted Solutions
Reeza
Super User

You can tell the year and the month, sort of, but you cannot determine the exact date. 

 

And the solution still doesn't need arrays or loops so, in context of how you originally framed the question, it still doesn't add clarification. 

 

If you want the answer to this question, use INTNX to move the date back by the age. 

You can look at the fourth parameter for some alignment options, but really the birthdate can be anything in the range of a year. 

 

dob = intnx('year', date, -40, 'b');

 

 

View solution in original post

6 REPLIES 6
Reeza
Super User

@asobs wrote:

Need assistance finding DOB with a start date and age. Also has to include a do loop. 

 

Age is 40.

Start date is February 15, 2001.

 

My script so far:

 

data birth;

     Age = 40;

     Start = '15Feb2001'd;

Bday=Start-Age;

do Age = 1 to 90 until (Start lt '15Feb2001'd);

     output;

          end;

run;

 

proc print data=birth;

format Start Bday mmddyy10.;

run; 

 

 

 


DOB doesn't change over time...why do you think you need a do loop for that?

asobs
Calcite | Level 5

T

Reeza
Super User

Well...the question as posed doesn't make sense so I'm not sure how we can help you here. 

asobs
Calcite | Level 5
 
Reeza
Super User

You can tell the year and the month, sort of, but you cannot determine the exact date. 

 

And the solution still doesn't need arrays or loops so, in context of how you originally framed the question, it still doesn't add clarification. 

 

If you want the answer to this question, use INTNX to move the date back by the age. 

You can look at the fourth parameter for some alignment options, but really the birthdate can be anything in the range of a year. 

 

dob = intnx('year', date, -40, 'b');

 

 

Reeza
Super User

Thank you for reminding me why I should never bother with stupid and homework questions. 

 

SAS INNOVATE 2024

Innovate_SAS_Blue.png

Registration is open! SAS is returning to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team. Register for just $495 by 12/31/2023.

If you are interested in speaking, there is still time to submit a session idea. More details are posted on the website. 

Register now!

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

Find more tutorials on the SAS Users YouTube channel.

Get the $99 certification deal.jpg

 

 

Back in the Classroom!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 6 replies
  • 1094 views
  • 0 likes
  • 2 in conversation