I have a date variable with the YYMMDDN8. format. However, some values are displayed as E. From the frequency table, I understand that these are the missing values. So I want to replace them with December 31, 2023. This is how the data looks. I tried to replace Es, .s, it didn't work.
DATA Zeynep.ccmxpfadjusted;
SET Zeynep.ccmxpf_lnkused;
IF ULINKENDDT = .......... THEN ULINKENDDT =..........;
RUN;
How should i proceed ? Many thanks