<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: How to Assign hyperlink on variable names in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-to-Assign-hyperlink-on-variable-names/m-p/641162#M23956</link>
    <description>&lt;P&gt;Where to you want the link? On the column header? On on the value of the variable?&lt;/P&gt;
&lt;P&gt;If on the vlaue of the variable does the link depend on the value of the variable?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If the latter you probably need to create a format that converts the value into the link and use the STYLE option to set the url to the formatted value.&amp;nbsp; Although with PROC REPORT you can also use a compute block.&amp;nbsp; See this earlier answer.&amp;nbsp;&amp;nbsp;&lt;A href="https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-EXCEL-Clickable-external-hyperlink/td-p/494468" target="_blank"&gt;https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-EXCEL-Clickable-external-hyperlink/td-p/494468&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Sun, 19 Apr 2020 20:21:32 GMT</pubDate>
    <dc:creator>Tom</dc:creator>
    <dc:date>2020-04-19T20:21:32Z</dc:date>
    <item>
      <title>How to Assign hyperlink on variable names</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-to-Assign-hyperlink-on-variable-names/m-p/641104#M23952</link>
      <description>Dear team&lt;BR /&gt;I need your help to Assign hyperlink on variable name not on values....for example&lt;BR /&gt;&lt;BR /&gt;Please take sashelp.Class data set and generate the report using proc report and give hyperlink on NAME and Sex variables while generating report</description>
      <pubDate>Sun, 19 Apr 2020 15:58:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-to-Assign-hyperlink-on-variable-names/m-p/641104#M23952</guid>
      <dc:creator>NASEER</dc:creator>
      <dc:date>2020-04-19T15:58:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to create hyperlink on variable names</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-to-Assign-hyperlink-on-variable-names/m-p/641107#M23953</link>
      <description>&lt;P&gt;A variable name can consist of a maximum of 32 characters, and valid SAS names cannot consist of the characters necessary for URLs.&lt;/P&gt;
&lt;P&gt;You might be able to fit a URL in a variable label.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What are you trying to achieve?&lt;/P&gt;</description>
      <pubDate>Sun, 19 Apr 2020 15:50:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-to-Assign-hyperlink-on-variable-names/m-p/641107#M23953</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2020-04-19T15:50:43Z</dc:date>
    </item>
    <item>
      <title>Re: How to create hyperlink on variable names</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-to-Assign-hyperlink-on-variable-names/m-p/641108#M23954</link>
      <description>I want to generate the report using proc report.&lt;BR /&gt;while creating report I want Assign hyperlink on variable names.for example Please take sashelp.Class data set and generate the report using proc report and give hyperlink on NAME and Sex variables while generating report</description>
      <pubDate>Sun, 19 Apr 2020 16:03:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-to-Assign-hyperlink-on-variable-names/m-p/641108#M23954</guid>
      <dc:creator>NASEER</dc:creator>
      <dc:date>2020-04-19T16:03:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to create hyperlink on variable names</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-to-Assign-hyperlink-on-variable-names/m-p/641110#M23955</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/323966"&gt;@NASEER&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can specify the hyperlink in a style option in the DEFINE statement as below:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc report data=sashelp.class;
	column name;
	define name / display style(header)={url='https://communities.sas.com/t5/ODS-and-Base-Reporting/How-to-Assign-hyperlink-on-variable-names/m-p/641104'};
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Best,&lt;/P&gt;</description>
      <pubDate>Sun, 19 Apr 2020 16:25:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-to-Assign-hyperlink-on-variable-names/m-p/641110#M23955</guid>
      <dc:creator>ed_sas_member</dc:creator>
      <dc:date>2020-04-19T16:25:30Z</dc:date>
    </item>
    <item>
      <title>Re: How to Assign hyperlink on variable names</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-to-Assign-hyperlink-on-variable-names/m-p/641162#M23956</link>
      <description>&lt;P&gt;Where to you want the link? On the column header? On on the value of the variable?&lt;/P&gt;
&lt;P&gt;If on the vlaue of the variable does the link depend on the value of the variable?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If the latter you probably need to create a format that converts the value into the link and use the STYLE option to set the url to the formatted value.&amp;nbsp; Although with PROC REPORT you can also use a compute block.&amp;nbsp; See this earlier answer.&amp;nbsp;&amp;nbsp;&lt;A href="https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-EXCEL-Clickable-external-hyperlink/td-p/494468" target="_blank"&gt;https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-EXCEL-Clickable-external-hyperlink/td-p/494468&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 19 Apr 2020 20:21:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-to-Assign-hyperlink-on-variable-names/m-p/641162#M23956</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2020-04-19T20:21:32Z</dc:date>
    </item>
  </channel>
</rss>

