It appears that you have the file created already. Since this file is created already, you can use the FTP Access method along with the data step to move the file from the mainframe to the PC. On the PC, if you give this an extension of .XLS, the file will be opened in Excel since Excel can read HTML files. Note that this does not create a native Excel formatted file. The step below reads the HTML file and write it back out to the file specified with the filename statement and the FTP access method.
ods listing close;
filename temp ftp 'location/xxx.xls'
user='joebloe' host='hostname'
pass='xxx'
recfm=v
prompt debug;
filename in "some.html.file";
data _null_;
infile in ;
input;
file temp;
put _infile_;
run;