<?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 10 to the power of 9....diplay in dataset in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/10-to-the-power-of-9-diplay-in-dataset/m-p/65468#M14211</link>
    <description>Hi,&lt;BR /&gt;
&lt;BR /&gt;
This is silly question, but i want to know...any possibility....&lt;BR /&gt;
&lt;BR /&gt;
I want to display the value "10 to the power of 9" value in a variable in a dataset using datastep coding techniques...&lt;BR /&gt;
&lt;BR /&gt;
I mean its like superscript.....&lt;BR /&gt;
&lt;BR /&gt;
Pavan.&lt;BR /&gt;
&lt;BR /&gt;
null

null</description>
    <pubDate>Mon, 24 Jan 2011 18:13:34 GMT</pubDate>
    <dc:creator>Pavan_SAS</dc:creator>
    <dc:date>2011-01-24T18:13:34Z</dc:date>
    <item>
      <title>10 to the power of 9....diplay in dataset</title>
      <link>https://communities.sas.com/t5/SAS-Programming/10-to-the-power-of-9-diplay-in-dataset/m-p/65468#M14211</link>
      <description>Hi,&lt;BR /&gt;
&lt;BR /&gt;
This is silly question, but i want to know...any possibility....&lt;BR /&gt;
&lt;BR /&gt;
I want to display the value "10 to the power of 9" value in a variable in a dataset using datastep coding techniques...&lt;BR /&gt;
&lt;BR /&gt;
I mean its like superscript.....&lt;BR /&gt;
&lt;BR /&gt;
Pavan.&lt;BR /&gt;
&lt;BR /&gt;
null

null</description>
      <pubDate>Mon, 24 Jan 2011 18:13:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/10-to-the-power-of-9-diplay-in-dataset/m-p/65468#M14211</guid>
      <dc:creator>Pavan_SAS</dc:creator>
      <dc:date>2011-01-24T18:13:34Z</dc:date>
    </item>
    <item>
      <title>Re: 10 to the power of 9....diplay in dataset</title>
      <link>https://communities.sas.com/t5/SAS-Programming/10-to-the-power-of-9-diplay-in-dataset/m-p/65469#M14212</link>
      <description>data data1;&lt;BR /&gt;
a=10;&lt;BR /&gt;
b=9;&lt;BR /&gt;
c=a ** b;&lt;BR /&gt;
run;</description>
      <pubDate>Mon, 24 Jan 2011 20:04:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/10-to-the-power-of-9-diplay-in-dataset/m-p/65469#M14212</guid>
      <dc:creator>DPraba79</dc:creator>
      <dc:date>2011-01-24T20:04:48Z</dc:date>
    </item>
    <item>
      <title>Re: 10 to the power of 9....diplay in dataset</title>
      <link>https://communities.sas.com/t5/SAS-Programming/10-to-the-power-of-9-diplay-in-dataset/m-p/65470#M14213</link>
      <description>You wanted to store a superscript in a dataset? Or does the above answer your question.</description>
      <pubDate>Mon, 24 Jan 2011 20:56:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/10-to-the-power-of-9-diplay-in-dataset/m-p/65470#M14213</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2011-01-24T20:56:41Z</dc:date>
    </item>
    <item>
      <title>Re: 10 to the power of 9....diplay in dataset</title>
      <link>https://communities.sas.com/t5/SAS-Programming/10-to-the-power-of-9-diplay-in-dataset/m-p/65471#M14214</link>
      <description>To the OP:  are you stating that you have either a SAS database file (or an external file) with numeric values which you want to translate into related verbiage that conveys their "x to the power of y" in a report or some other type of output-display representation?&lt;BR /&gt;
&lt;BR /&gt;
It would be most helpful to demonstrate your interest/objective with this post by sending a post-reply with both INPUT and OUTPUT data representations that you would like to see as if it were in a SAS database file and variable situation.&lt;BR /&gt;
&lt;BR /&gt;
Of course, some additional info about how you intend to use this information would be a curious bit of extra-credit work on your part, especially given the attention gained with your intial post and how it was worded.&lt;BR /&gt;
&lt;BR /&gt;
Scott Barry&lt;BR /&gt;
SBBWorks, Inc.

Message was edited by: sbb</description>
      <pubDate>Mon, 24 Jan 2011 21:51:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/10-to-the-power-of-9-diplay-in-dataset/m-p/65471#M14214</guid>
      <dc:creator>sbb</dc:creator>
      <dc:date>2011-01-24T21:51:26Z</dc:date>
    </item>
    <item>
      <title>Re: 10 to the power of 9....diplay in dataset</title>
      <link>https://communities.sas.com/t5/SAS-Programming/10-to-the-power-of-9-diplay-in-dataset/m-p/65472#M14215</link>
      <description>I think  that it is not the value but the formula that you want to store.  Is the following close to what you are looking for?  Formats are also an option.&lt;BR /&gt;
[pre]data a;&lt;BR /&gt;
txt = '10~{super 9}';&lt;BR /&gt;
run;&lt;BR /&gt;
ods escapechar='~';&lt;BR /&gt;
ods pdf file='c:\temp\super.pdf';&lt;BR /&gt;
proc print data=a;&lt;BR /&gt;
run;&lt;BR /&gt;
ods pdf close;[/pre]</description>
      <pubDate>Mon, 24 Jan 2011 23:45:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/10-to-the-power-of-9-diplay-in-dataset/m-p/65472#M14215</guid>
      <dc:creator>ArtC</dc:creator>
      <dc:date>2011-01-24T23:45:29Z</dc:date>
    </item>
  </channel>
</rss>

