Hello
I use a dataset containing dates
I would like to append new dates from another file but surely not add yet existing dates
So I would like to filter dates from new file considering the greatest date in my base dataset
something like : where date ge max date of base dateset !
Many thanks in advance 🙂
Joël
1.First load your new file to a dataset 2.proc sql; select max(date) into :max_date from old_table; quit; 3. Now you can filter the date if the date is greater than the macro variable:max_date 4.you can append to the existing dataset.
Hello R_Win
Many thanks for this solution which helps me very much
Simple, concise, fast, in a word : efficient !
Thanks again
Joël
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
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.
Ready to level-up your skills? Choose your own adventure.