As a very big hint for the future: never use date strings like these in dataset names or similar. Use a YYYYMM string instead.
You can then combine a year simply like this:
data want;
set have_2022:;
run;
In all displays, the datasets will always sort in chronological order.
... View more