Hi @Xiaoningdemao, Great that you have moved to SAS Studio, it's a very convenient way of using SAS (especially if one is a Mac user or wants to be more cloudy)! I can refer you to @Cynthia_sas's answer to a related question: https://communities.sas.com/t5/SAS-Analytics-U/How-do-I-turn-off-output-in-Studio-University-Edition/td-p/277820 Although the person who asked the question was wondering how to turn off the output / result, you can use ODS to change the path of your output and save it directly in a folder. That way, you can access your output right away even if it is not saved in your Results window. Additionally, here is the link that provides some information on ODS and how to change the output environment: http://support.sas.com/documentation/cdl/en/webeditorug/68828/HTML/default/viewer.htm#n0lyxx45gr31pan1vmm8z5f952l3.htm For instance, you can use the following code if you want to save your result in a given folder (e.g., in your Output folder). ods html path='SPECIFY LOCATION OF YOUR FOLDER'; I hope this helps a bit, but I think the links provided above should give you some guidance on how to save your output in SAS Studio and get around of losing your results. Cheers
... View more