Changing the Title Bar

When you view HTML output in a Web browser, you see your SAS results in the browser main display area. You also see your SAS titles above your output in the browser window. There is a title bar at the top of the browser that also contains some text.

What you see in the title bar depends on your browser. By default, HTML created by ODS has the text "SAS Output" displayed in the title bar. Following that might be text such as "Microsoft Internet Explorer" or "Mozilla Firefox."

For example, if you run the following code, you get the output shown in Figure 3.19.

ODS HTML BODY='body.html'; title 'Quarterly Report'; title2 'Hours Billed by Customer'; proc means data=Billings nonobs mean sum maxdec=1; class CustomerName; var ...

Get Output Delivery System: The Basics and Beyond now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.