What I\m trying to do seems simple but I've been trying to figure it out for the last hour and still nothing. I have a variable called NCCT_Date. What ever I pass to this variable I would like to populate every row of an already create dataset and call the column the data is getting passed to Rpt_Date. The code I'm using is shown below. When I run the code the Rpt_Date column is created but the 'Fall2021' data is not getting passed. %let NCCT_Date = Fall2021; data work.sampletbl; set work.sampletbl; Rpt_Date = &NCCT_Date; run;
... View more