BookmarkSubscribeRSS Feed
urap
Calcite | Level 5

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;


Screenshot (38).png 

1 REPLY 1
Patrick
Opal | Level 21

@urap

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.

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

How to Concatenate Values

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 1 reply
  • 1199 views
  • 5 likes
  • 2 in conversation