Hi all!
Cynthia@sas
Yes, I want to achieve exactly what you think.
I don't just want to see the text string with the INTNX function in the new column, I want to have the INTNX function execute.
Another words:
If I have oryginal DataSet
col_EXP;
intnx('day',today(),2);
intnx('day',today(),10);
I want to achieve this result:
col_EXP;col_DT
intnx('day',today(),2); 2010-12-09
intnx('day',today(),10); 2010-12-17
The solution of @art297, @polingjw and @Ksharp works fine. I was just wondered if it can be done in easier way. Now I know that there is no chance to make this in one datastep.