Hi:
Well, if you were doing the report in PROC REPORT, the style override would be:
[pre]
style(header)={url='http://www.sas.com' foreground=purple background=pink}
[/pre]
However, I'm not sure that URL= will work with these data step objects, though. If you CAN use FILE: as the right argument, for setting a cell URL, I'm not sure that it will work with the FORMAT_CELL method.
You might also want to check in the pre-production documentation. The pre-production documentation is here:
http://support.sas.com/rnd/base/datastep/dsobject/Power_to_show_documentation.pdf
In the documentation, I also note that there is an OBJECT.HREF method as shown here:
[pre]
obj.href(data: “SAS Home page”,
file: “http://www.sas.com/index.html”);
[/pre]
So, it seems like your FILE: might be OK if you used a different method than OBJ.FORMAT_CELL
Since the ODS DATA step object is still pre-production, you might want to check with Tech Support on this question. If they don't know the answer, they can work with the developers to get you the answer.
cynthia
... View more