@lydia_li wrote:
as I said before, 1 is an example, I want to re-assign some columns, for example PD = 1 or LGD/EAD = 100000 etc. 1 is just an example for understanding.
What is the problem with just writing the code?
data want;
set have;
PD = 1;
LGD_EAD = 100000 ;
run;
Note: If you want coding help post your data and code as TEXT and not PICTURES.
... View more