Okay I have stated my issue in the simplest way I could. Let's take it this way forget whatever we have discussed till now. Here I am giving you this code of a table
data cars;
set sashelp.cars;
run;
proc report data = cars;
col ('Report submitted by telecom pvt ltd' make type origin msrp,(min max mean));
define make/ group;
define type/ group;
define origin/ group;
run;
write syntax for new variable NEWSALE calculated as below-
NEWSALE = MSRP + 100;
In words - I want to add or increment MSRP by 100 and store it in a new variable called NEWSALE
It is as simple as it sounds. Just write whatever you know. Also, let me know if it is programmatically possible or not.
... View more