If there is a data step:
data myRegions; set myRegions; ext_price = price * qty; mix = weighted_calc * ext_price; run;
I want to do this in SQL, because I want to use some groups and subqueries, but can I do the price * qty operation every time I want to use this value ?!
user2467660
source share