Hi Miller, Thanks for your reply, I have successfully written code to calculate the 75th percentile (or 3rd quartile) values for both credit limit and total transaction amount in our dataset, as outlined below: proc means data = credit_nodup qntldef=3 n median q1 q3; var Credit_limit Total_Trans_Amt; output out=credit_SummaryStats; run; Now, I am facing a challenge in merging this 75th percentile data with the original dataset. I would greatly appreciate your guidance on how to accomplish this task. Thank you very much for your assistance. Warm regards,
... View more