I always work with SAS desktop and am not familier with SAS studio. I have imported my excel file per tutorial videos and screen shot is provided. now I have difficulties on how to right my furthur PROCs ( Proc means, print,...). the SAS code provided here after importing data does not let me type further codes.

Also how to use proc import as a second option to import my data rather than uploading my excel data to here . I used Proc Import syntax from my SAS desktop version and it is not reading the data.
proc import datafile='locationxxxxxx'
out=hw
dbms=xlsx;
getnames=yes;
proc print data=hw;run;
Thanks