to maximize the profit check the products providing profit more than 40% of sale amount and increase the quantity of those products to 15 . Also check by what amount do you need to increase the quantity by considering inf_globalsales dataset
data sasclass.inf_globalsales;
infile "/folders/myfolders/dataset.csv/"
dlm="," dsd firstobs=2;
input Order_ID : $30. Order_Date : ddmmyy10. Ship_Date : ddmmyy10. Customer_ID : $20. Segment : $20.
City : $20. State : $20. Country : $20. Category : $20. Sales : dollar20.2
Quantity Discount Profit : dollar20.2;
format Order_Date ddmmyy10. Ship_Date ddmmyy10. Sales : dollar20.2 Profit : dollar20.2;
run;
proc print data=sasclass.inf_globalsales(obs=20);
run;
First step before writing any code:
1. Define the problem(s) to be solved (=requirement)
2. Analyze the data you've got (have)
3. Define the result you need (want)
4. Define the logic you need to implement to get from your "have" to your "want" (gap)
....and now you're at the point where you can start to think about how to solve this technically and if you don't know "how to" are in a position to ask targeted questions in this forum.
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.