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-white.png

🚨 Early Bird Rate Extended!

Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9.

 

Lock in the best rate now before the price increases on April 1.

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.

SAS Training: Just a Click Away

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

Browse our catalog!

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