<?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: Alignment adjustment for footnote in SAS Studio</title>
    <link>https://communities.sas.com/t5/SAS-Studio/Alignment-adjustment-for-footnote/m-p/500649#M6308</link>
    <description>&lt;P&gt;Press the spacebar:&lt;/P&gt;
&lt;PRE&gt;footnote font=arial bold j=left "Nota" font=arial bold italic "/Note";
footnote2 j=l   f='ARIAL amt/bold' "          Angka-angka di atas tidak disesuaikan untuk kurang penghitungan.";
&lt;/PRE&gt;
&lt;P&gt;You may have to add or remove a space to get the alignment.&amp;nbsp; If you have to do this a lot, consider aligning the footnotes rather than offsettting them somewhat.&amp;nbsp; Otherwise you may need a cat(repeat(" ",lengthn(previousfootnote)-1),"Your new footnote")&lt;/P&gt;</description>
    <pubDate>Tue, 02 Oct 2018 08:14:58 GMT</pubDate>
    <dc:creator>RW9</dc:creator>
    <dc:date>2018-10-02T08:14:58Z</dc:date>
    <item>
      <title>Alignment adjustment for footnote</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Alignment-adjustment-for-footnote/m-p/500619#M6302</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need help on adjusting alignment for footnotes. I have got the following codes currently:&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;TITLE j=left "Jadual B1 : Jumlah penduduk mengikut kumpulan etnik, kawasan pihak berkuasa tempa'tan dan negeri, Malaysia, 2010";
Title2 font=bold italic j=left "Table   B1 : Total population by ethnic group, local authority area and state, Malaysia, 2010";
title3 " ";
title4 j=left "Negeri : NEGERI SEMBILAN";
title5 font=bold italic j=left "State";

proc tabulate data=WORK.DOSM order=data;
	where not missing(NEW_ETHNICITY);
	class DISTRICT NEW_ETHNICITY NEW_CITIZENSHIP /Missing;
	classlev NEW_ETHNICITY;
	CLASSLEV NEW_citizenship;
	classlev district;
	var ID;
	table ALL DISTRICT=' ', ALL NEW_ETHNICITY='Warganegara Malaysia
Malaysian citizens' ALL 
		NEW_CITIZENSHIP='Bukan Warganegara Malaysia *Non-   Malaysian citizens *' 
		/Box='Daerah Pentadbiran/Kawasan Pihak Berkuasa Tempatan
										Administrative District/Local Authority Area' row=float MISSTEXT='0';
	keylabel N=' ';
	keylabel all='Jumlah Total';
	footnote font=arial bold j=left "Nota" font=arial bold italic "/Note";
	footnote2 j=l   f='ARIAL amt/bold' "Angka-angka di atas tidak disesuaikan untuk kurang penghitungan.";
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;And i get the following result:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture2.PNG" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/23683i02EB64B86E8E0E73/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture2.PNG" alt="Capture2.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, i need the footnote2 first word 'Angka' to start after Note/Nota as per the following example:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.PNG" style="width: 534px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/23684iAD51EFCFECBE251C/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.PNG" alt="Capture.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could anyone please help me on this?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Oct 2018 03:46:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Alignment-adjustment-for-footnote/m-p/500619#M6302</guid>
      <dc:creator>sheren_deep1</dc:creator>
      <dc:date>2018-10-02T03:46:05Z</dc:date>
    </item>
    <item>
      <title>Re: Alignment adjustment for footnote</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Alignment-adjustment-for-footnote/m-p/500643#M6306</link>
      <description>&lt;P&gt;There is no automatic way of doing this, valid alignements are left, right, and center.&amp;nbsp; The simplest method is to add spaces to increment the footnote out to where you want it.&amp;nbsp; I would also avoid putting footnotes in the proc step, there is no need and it just clutters the proc, and please avoid upper case coding, makes reading the code much harder.&lt;/P&gt;</description>
      <pubDate>Tue, 02 Oct 2018 07:57:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Alignment-adjustment-for-footnote/m-p/500643#M6306</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2018-10-02T07:57:47Z</dc:date>
    </item>
    <item>
      <title>Re: Alignment adjustment for footnote</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Alignment-adjustment-for-footnote/m-p/500644#M6307</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank for your reply. Can you please explain to me how to&amp;nbsp;&amp;nbsp;&lt;SPAN&gt;add spaces to increment the footnote? I need the table precisely on this format; hence i need the footnote.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Oct 2018 08:00:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Alignment-adjustment-for-footnote/m-p/500644#M6307</guid>
      <dc:creator>sheren_deep1</dc:creator>
      <dc:date>2018-10-02T08:00:21Z</dc:date>
    </item>
    <item>
      <title>Re: Alignment adjustment for footnote</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Alignment-adjustment-for-footnote/m-p/500649#M6308</link>
      <description>&lt;P&gt;Press the spacebar:&lt;/P&gt;
&lt;PRE&gt;footnote font=arial bold j=left "Nota" font=arial bold italic "/Note";
footnote2 j=l   f='ARIAL amt/bold' "          Angka-angka di atas tidak disesuaikan untuk kurang penghitungan.";
&lt;/PRE&gt;
&lt;P&gt;You may have to add or remove a space to get the alignment.&amp;nbsp; If you have to do this a lot, consider aligning the footnotes rather than offsettting them somewhat.&amp;nbsp; Otherwise you may need a cat(repeat(" ",lengthn(previousfootnote)-1),"Your new footnote")&lt;/P&gt;</description>
      <pubDate>Tue, 02 Oct 2018 08:14:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Alignment-adjustment-for-footnote/m-p/500649#M6308</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2018-10-02T08:14:58Z</dc:date>
    </item>
    <item>
      <title>Re: Alignment adjustment for footnote</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Alignment-adjustment-for-footnote/m-p/500650#M6309</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have actually tried adding blank spaces before the first letter. However, this does not work for me :(. Any other suggestion?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Oct 2018 08:20:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Alignment-adjustment-for-footnote/m-p/500650#M6309</guid>
      <dc:creator>sheren_deep1</dc:creator>
      <dc:date>2018-10-02T08:20:34Z</dc:date>
    </item>
    <item>
      <title>Re: Alignment adjustment for footnote</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Alignment-adjustment-for-footnote/m-p/500653#M6310</link>
      <description>&lt;P&gt;&lt;SPAN&gt;"However, this does not work for me" - does not tell me anything.&amp;nbsp; What did not work, was it not aligned, did it crash?&amp;nbsp; As I said there is no automatic alignment for what you are asking (as its not a standard alignment), so you need to fix it in yourself somehow.&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Oct 2018 08:59:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Alignment-adjustment-for-footnote/m-p/500653#M6310</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2018-10-02T08:59:26Z</dc:date>
    </item>
    <item>
      <title>Re: Alignment adjustment for footnote</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Alignment-adjustment-for-footnote/m-p/500679#M6311</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE class=" language-sas"&gt;&lt;CODE class="  language-sas"&gt;&lt;SPAN class="token statement"&gt;ods escapechar='~';&lt;BR /&gt;proc tabulate ........&lt;BR /&gt;..............&lt;BR /&gt;&lt;BR /&gt;footnote&lt;/SPAN&gt; font&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;arial bold j&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;left&lt;/SPAN&gt; &lt;SPAN class="token string"&gt;"Nota"&lt;/SPAN&gt; font&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;arial bold italic &lt;SPAN class="token string"&gt;"/Note"&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
	footnote2 j&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;l   f&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;&lt;SPAN class="token string"&gt;'~_~_~_~_~_~_~_~_~_ARIAL amt/bold'&lt;/SPAN&gt; &lt;SPAN class="token string"&gt;"Angka-angka di atas tidak disesuaikan untuk kurang penghitungan."&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
&lt;BR /&gt;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Oct 2018 10:53:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Alignment-adjustment-for-footnote/m-p/500679#M6311</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2018-10-02T10:53:34Z</dc:date>
    </item>
    <item>
      <title>Re: Alignment adjustment for footnote</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Alignment-adjustment-for-footnote/m-p/501314#M6331</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It works. Thank you for the help. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 04 Oct 2018 02:31:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Alignment-adjustment-for-footnote/m-p/501314#M6331</guid>
      <dc:creator>sheren_deep1</dc:creator>
      <dc:date>2018-10-04T02:31:03Z</dc:date>
    </item>
  </channel>
</rss>

