我有一个SAS数据集,其中有以下顺序的变量
Customer_Name
Quantity_Sold
Total_Retail_Price
Product_Name
Supplier
现在,我想基于此现有数据集创建一个新数据集,但是在新数据集中,我要按照以下顺序进行变量排列
Customer_Name
Supplier
Product_Name
Quantity_Sold
Total_Retail_Price
谁能帮助我解决这个问题
预先感谢
答案 0 :(得分:0)
您可以在SET之前使用“保留”来创建新数据集。
data new;
retain Customer_ Name Supplier Product_Name Quantity_Sold Total_Retail_Price;
set have;
run;