<?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 Why this hash code works for a single bank but not for 2 banks ? in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Why-this-hash-code-works-for-a-single-bank-but-not-for-2-banks/m-p/102060#M28640</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-family: arial,helvetica,sans-serif;"&gt;&lt;STRONG style="color: green; font-size: 11pt; background: white;"&gt;Hi SAS Discussion Forum,&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial,helvetica,sans-serif;"&gt;&lt;STRONG style="color: green; font-size: 11pt; background: white;"&gt; &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial,helvetica,sans-serif;"&gt;&lt;STRONG style="color: green; font-size: 11pt; background: white;"&gt;Attached longitudinal data set_1 shows how 5 accounts in a single bank (bank_number=10) is &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial,helvetica,sans-serif;"&gt;&lt;STRONG style="color: green; font-size: 11pt; background: white;"&gt;swinging from one delinquency bucket to the other&amp;nbsp; (original data set has over million&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial,helvetica,sans-serif;"&gt;&lt;STRONG style="color: green; font-size: 11pt; background: white;"&gt;records and 9 banks).&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial,helvetica,sans-serif;"&gt;&lt;STRONG style="color: green; font-size: 11pt; background: white;"&gt; &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial,helvetica,sans-serif;"&gt;&lt;STRONG style="color: green; font-size: 11pt; background: white;"&gt;Alpey has generously created the hash code below which cleverly returns the sum of variable "balance" for each arrears_band &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial,helvetica,sans-serif;"&gt;&lt;STRONG style="color: green; font-size: 11pt; background: white;"&gt;grouped by current_date subject to a few conditions (conditions are presented at the end to avoid the reader getting sick).&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: green; font-size: 11pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: fuchsia; font-size: 11pt; background: white; text-decoration: underline; font-family: 'Courier New';"&gt;Hash code (by Alpey, 2012)&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 0px 0.5in;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;data temp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 0px 0.5in;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if _n_ = 1 then do;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 0px 0.5in;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; declare hash h(ordered:'a');&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 0px 0.5in;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; h.defineKey('Current_Date');&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 0px 0.5in;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; h.defineData('Current_Date','Bank_Number','Account_Number','Balance','Product','Arrears_Band','NPNA_Start_Month');&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 0px 0.5in;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; h.defineDone();&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 0px 0.5in;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; declare hiter hi('h');&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 0px 0.5in;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; end;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 0px 0.5in;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; NPNA_Start_Month = .;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 0px 0.5in;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; do until(last.Account_Number);&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 0px 0.5in;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; set b; &lt;SPAN style="color: #ff0000;"&gt;/*inputting our data set*/&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 0px 0.5in;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; where&amp;nbsp; Product IN ('Personal OD','Personal Loan','Res. Mortgage') and&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 0px 0.5in;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Bank_number = 10; &lt;SPAN style="color: #ff0000;"&gt;/*when have more than one bank, we can remove this condition */&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 0px 0.5in;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; by Account_Number;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 0px 0.5in;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if Arrears_Band = 'NPNA' and NPNA_Start_Month = . then NPNA_Start_Month = Current_Date;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 0px 0.5in;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; else if Arrears_Band ne 'NPNA' then NPNA_Start_Month = .;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 0px 0.5in;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; h.replace();&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 0px 0.5in;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; end;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 0px 0.5in;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Last_NPNA_Start_Month = NPNA_Start_Month; /* Added 6/18/2012 */&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 0px 0.5in;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; rc = hi.first();&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 0px 0.5in;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; do while(rc=0);&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 0px 0.5in;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Current = 0;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 0px 0.5in;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; One_to_30 = 0;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 0px 0.5in;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Thirty_to_60 = 0;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 0px 0.5in;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Sixty_to_90 = 0;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 0px 0.5in;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Ninety_plus = 0;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 0px 0.5in;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; NPNA = .;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 0px 0.5in;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if NPNA_Start_Month = . or (&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 0px 0.5in;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; NPNA_Start_Month = Current_Date and /* NPNA_Start_Month &amp;gt; '28Feb2010'd */&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 0px 0.5in;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Last_NPNA_Start_Month ne '28Feb2010'd) then do;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 0px 0.5in;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; select (Arrears_Band);&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 0px 0.5in;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; when ('Current') do;Current = Balance;end;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 0px 0.5in;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; when ('1 - 30') do;One_to_30 = Balance;end;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 0px 0.5in;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; when ('30 - 60') do;Thirty_to_60 = Balance;end;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 0px 0.5in;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; when ('60 - 90') do;Sixty_to_90 = Balance;end;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 0px 0.5in;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; when ('90 +') do;Ninety_plus = Balance;end;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 0px 0.5in;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; when ('NPNA') do;NPNA = Balance;end;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 0px 0.5in;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; end;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 0px 0.5in;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; end;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 0px 0.5in;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; output;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 0px 0.5in;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; rc = hi.next();&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 0px 0.5in;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; end;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 0px 0.5in;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; h.clear();&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 0px 0.5in;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;run;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 0px 0.5in;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;proc summary data=temp nway missing;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 0px 0.5in;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; class Current_Date;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 0px 0.5in;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; var Current One_to_30 Thirty_to_60 Sixty_to_90 Ninety_plus NPNA;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 0px 0.5in;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; output out=want(drop=_:)&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 0px 0.5in;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; sum=;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 0px 0.5in;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;run;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: green; font-size: 11pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: green; font-size: 11pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: fuchsia; font-size: 11pt; background: white; text-decoration: underline; font-family: 'Courier New';"&gt;Applying above code&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #339966; font-size: 11pt; background: white; text-decoration: underline; font-family: 'Courier New';"&gt;Step 1: &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: green; font-size: 11pt;"&gt;I sorted the set_1 data set:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: green; font-size: 11pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: green; font-size: 11pt;"&gt;proc sort data=set_1 out = b;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: green; font-size: 11pt;"&gt;&amp;nbsp; by account_number&amp;nbsp; current_date;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: green; font-size: 11pt;"&gt;run;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: green; font-size: 11pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: green; font-size: 11pt; background: white; text-decoration: underline; font-family: 'Courier New';"&gt;Step 2:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: green; font-size: 11pt;"&gt;Then ran the hash code.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: green; font-size: 11pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: green; font-size: 11pt; background: white; text-decoration: underline; font-family: 'Courier New';"&gt;Step 3:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: green; font-size: 11pt;"&gt;It generated the following results which is very correct given my conditions.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: green; font-size: 11pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;These are the results:&lt;/P&gt;&lt;P&gt;Obs&amp;nbsp; Current_date&amp;nbsp;&amp;nbsp;&amp;nbsp; Current&amp;nbsp;&amp;nbsp;&amp;nbsp; 1_to_30&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 30_to_60&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 60_to_90&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 90+&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; NPNA &lt;STRONG style="color: #800000;"&gt;(these are vairable headings)&lt;/STRONG&gt;&lt;/P&gt;&lt;TABLE border="1" cellpadding="0" cellspacing="0" style="border: #4f493b 1pt solid;"&gt;&lt;TBODY&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="1" cellpadding="0" cellspacing="0" style="border: #4f493b 1pt solid;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;1&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;28FEB2010&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;24&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;25&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;2&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;31MAR2010&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;25&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;23&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;3&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;30APR2010&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;25&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;23&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;4&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;31MAY2010&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;25&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;23&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;5&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;30JUN2010&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;23&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;6&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;31JUL2010&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;85&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;7&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;31DEC2010&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;8&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;31JAN2011&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;25&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;18&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;9&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;28FEB2011&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;43&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;10&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;31MAR2011&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;11&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;30APR2011&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;12&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;31MAY2011&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;85&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style=": ; color: fuchsia; background: white; font-size: 16pt; font-family: 'Courier New'; text-decoration: underline;"&gt;New problem:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: andale mono,times; background: white; color: green; font-size: 14pt;"&gt;I added another bank (bank_number=20) to the set_1 and populated the same data values found in bank=10&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: andale mono,times; background: white; color: green; font-size: 14pt;"&gt;in set_1 for the new bank too, and created a new data set (see attached data set_2).&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: andale mono,times; background: white; color: green; font-size: 14pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: andale mono,times; background: white; color: green; font-size: 14pt;"&gt;This time I should do the sorting taking "bank_number account_number&amp;nbsp; current_date" as sorting variables. Why? Because these are the 3 variables that would uniquely identify a record (this is sure!).&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: andale mono,times; background: white; color: green; font-size: 14pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: andale mono,times; background: white; color: green; font-size: 14pt;"&gt;proc sort data=set_2 out = c;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: andale mono,times; background: white; color: green; font-size: 14pt;"&gt;&amp;nbsp; by bank_number account_number&amp;nbsp; current_date;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: andale mono,times; background: white; color: green; font-size: 14pt;"&gt;run;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: green;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style=": ; color: fuchsia; background: white; font-size: 16pt; font-family: 'Courier New'; text-decoration: underline;"&gt;Question:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: green; font-size: 11pt;"&gt;When I now try to apply the hash code for data set "c", log gives this error message.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: green; font-size: 11pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: red; font-size: 11pt;"&gt;"ERROR: BY variables are not properly sorted on data set WORK.C."&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: green; font-size: 11pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: green; font-size: 11pt;"&gt;Could an expert please help me to tweak this hash code to avoid this problem? &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: green; font-size: 11pt;"&gt;(may be we need to incorporate my new sorting order into hash code which &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: green; font-size: 11pt;"&gt;is "bank_number account_number&amp;nbsp; current_date"&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: green; font-size: 11pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: green; font-size: 11pt;"&gt;One more thing, if I just sort the data set_2 by "account_number&amp;nbsp; current_date" and apply the hash code, then the replicated bank_number 20's data are ignored from summing up.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: green; font-size: 11pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #ff6600; font-size: 11pt; background: white; font-family: 'Courier New';"&gt;(Optional reading) &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: fuchsia; font-size: 11pt; background: white; text-decoration: underline; font-family: 'Courier New';"&gt;These are the conditions Hash code cleverly captures&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style=": ; color: green; background: white; font-size: 11pt; font-family: 'Courier New'; text-decoration: underline;"&gt;Condition 1:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: green; font-size: 11pt;"&gt;"Balances corresponding to NPNA Arrears_Band have to be summed up for only those accounts that have fallen into NPNA status after&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: green; font-size: 11pt;"&gt;28FEB2010. NPNA balances in 28FEB2010 and in all subsequent months of those accounts that were already in NPNA status&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: green; font-size: 11pt;"&gt;in 28FEB2010 should be omitted from summing up". &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: green; font-size: 11pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;OL style="list-style-type: upper-alpha;"&gt;&lt;LI&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: green; font-size: 11pt;"&gt;E.g. In bank number 10, Account 1111111111 's&lt;/SPAN&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: green; font-size: 11pt;"&gt;NPNA balance should be excluded from summing up&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: green; font-size: 11pt;"&gt;in 28FEB2010 and in all subsequent months because it was already in NPNA status when we begin our modeling period in 28FEB2010 and this account continued to be NPNA throughout its life.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: green; font-size: 11pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style=": ; color: green; background: white; font-size: 11pt; font-family: 'Courier New'; text-decoration: underline;"&gt;Condition 2:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: green; font-size: 11pt;"&gt;However, if an account has started with "NPNA" status from 28FEB2010 but it has not continued its NPNA status throughout its life, then these type of accounts should be excluded from the &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: green; font-size: 11pt;"&gt;condition 1 above although &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: green; font-size: 11pt;"&gt;these accounts also have started with "NPNA" status from 28FEB2010 itself.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: green; font-size: 11pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: green; font-size: 11pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: green; font-size: 11pt;"&gt;E.g. A/C 4444444444 has started its life with "arreres_band=NPNA in 28FEB2010 but then improved in 31Jan2011 into “1-30” arrears&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: green; font-size: 11pt;"&gt;bucket.&amp;nbsp; Again fallen into NPNA delq. bucket in&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: green; font-size: 11pt;"&gt;28FEB2011. Then again improved to "current" in 31May2011.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: green; font-size: 11pt;"&gt;So, this accounts NPNA balance in 28Feb2010 has to be taken for summing up.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: green; font-size: 11pt;"&gt;And its NPNA balance in 28Feb2011 has to be taken for summing up.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your help is greatly apprecaited!&lt;/P&gt;&lt;P&gt;Mirisage&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 22 Aug 2012 16:02:42 GMT</pubDate>
    <dc:creator>Mirisage</dc:creator>
    <dc:date>2012-08-22T16:02:42Z</dc:date>
    <item>
      <title>Why this hash code works for a single bank but not for 2 banks ?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Why-this-hash-code-works-for-a-single-bank-but-not-for-2-banks/m-p/102060#M28640</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-family: arial,helvetica,sans-serif;"&gt;&lt;STRONG style="color: green; font-size: 11pt; background: white;"&gt;Hi SAS Discussion Forum,&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial,helvetica,sans-serif;"&gt;&lt;STRONG style="color: green; font-size: 11pt; background: white;"&gt; &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial,helvetica,sans-serif;"&gt;&lt;STRONG style="color: green; font-size: 11pt; background: white;"&gt;Attached longitudinal data set_1 shows how 5 accounts in a single bank (bank_number=10) is &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial,helvetica,sans-serif;"&gt;&lt;STRONG style="color: green; font-size: 11pt; background: white;"&gt;swinging from one delinquency bucket to the other&amp;nbsp; (original data set has over million&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial,helvetica,sans-serif;"&gt;&lt;STRONG style="color: green; font-size: 11pt; background: white;"&gt;records and 9 banks).&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial,helvetica,sans-serif;"&gt;&lt;STRONG style="color: green; font-size: 11pt; background: white;"&gt; &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial,helvetica,sans-serif;"&gt;&lt;STRONG style="color: green; font-size: 11pt; background: white;"&gt;Alpey has generously created the hash code below which cleverly returns the sum of variable "balance" for each arrears_band &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial,helvetica,sans-serif;"&gt;&lt;STRONG style="color: green; font-size: 11pt; background: white;"&gt;grouped by current_date subject to a few conditions (conditions are presented at the end to avoid the reader getting sick).&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: green; font-size: 11pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: fuchsia; font-size: 11pt; background: white; text-decoration: underline; font-family: 'Courier New';"&gt;Hash code (by Alpey, 2012)&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 0px 0.5in;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;data temp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 0px 0.5in;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if _n_ = 1 then do;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 0px 0.5in;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; declare hash h(ordered:'a');&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 0px 0.5in;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; h.defineKey('Current_Date');&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 0px 0.5in;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; h.defineData('Current_Date','Bank_Number','Account_Number','Balance','Product','Arrears_Band','NPNA_Start_Month');&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 0px 0.5in;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; h.defineDone();&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 0px 0.5in;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; declare hiter hi('h');&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 0px 0.5in;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; end;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 0px 0.5in;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; NPNA_Start_Month = .;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 0px 0.5in;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; do until(last.Account_Number);&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 0px 0.5in;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; set b; &lt;SPAN style="color: #ff0000;"&gt;/*inputting our data set*/&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 0px 0.5in;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; where&amp;nbsp; Product IN ('Personal OD','Personal Loan','Res. Mortgage') and&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 0px 0.5in;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Bank_number = 10; &lt;SPAN style="color: #ff0000;"&gt;/*when have more than one bank, we can remove this condition */&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 0px 0.5in;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; by Account_Number;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 0px 0.5in;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if Arrears_Band = 'NPNA' and NPNA_Start_Month = . then NPNA_Start_Month = Current_Date;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 0px 0.5in;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; else if Arrears_Band ne 'NPNA' then NPNA_Start_Month = .;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 0px 0.5in;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; h.replace();&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 0px 0.5in;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; end;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 0px 0.5in;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Last_NPNA_Start_Month = NPNA_Start_Month; /* Added 6/18/2012 */&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 0px 0.5in;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; rc = hi.first();&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 0px 0.5in;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; do while(rc=0);&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 0px 0.5in;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Current = 0;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 0px 0.5in;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; One_to_30 = 0;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 0px 0.5in;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Thirty_to_60 = 0;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 0px 0.5in;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Sixty_to_90 = 0;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 0px 0.5in;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Ninety_plus = 0;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 0px 0.5in;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; NPNA = .;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 0px 0.5in;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if NPNA_Start_Month = . or (&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 0px 0.5in;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; NPNA_Start_Month = Current_Date and /* NPNA_Start_Month &amp;gt; '28Feb2010'd */&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 0px 0.5in;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Last_NPNA_Start_Month ne '28Feb2010'd) then do;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 0px 0.5in;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; select (Arrears_Band);&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 0px 0.5in;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; when ('Current') do;Current = Balance;end;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 0px 0.5in;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; when ('1 - 30') do;One_to_30 = Balance;end;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 0px 0.5in;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; when ('30 - 60') do;Thirty_to_60 = Balance;end;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 0px 0.5in;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; when ('60 - 90') do;Sixty_to_90 = Balance;end;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 0px 0.5in;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; when ('90 +') do;Ninety_plus = Balance;end;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 0px 0.5in;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; when ('NPNA') do;NPNA = Balance;end;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 0px 0.5in;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; end;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 0px 0.5in;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; end;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 0px 0.5in;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; output;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 0px 0.5in;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; rc = hi.next();&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 0px 0.5in;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; end;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 0px 0.5in;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; h.clear();&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 0px 0.5in;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;run;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 0px 0.5in;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;proc summary data=temp nway missing;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 0px 0.5in;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; class Current_Date;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 0px 0.5in;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; var Current One_to_30 Thirty_to_60 Sixty_to_90 Ninety_plus NPNA;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 0px 0.5in;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; output out=want(drop=_:)&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 0px 0.5in;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; sum=;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 0px 0.5in;"&gt;&lt;SPAN lang="EN" style="font-family: Helvetica; color: #575757;"&gt;run;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: green; font-size: 11pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: green; font-size: 11pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: fuchsia; font-size: 11pt; background: white; text-decoration: underline; font-family: 'Courier New';"&gt;Applying above code&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #339966; font-size: 11pt; background: white; text-decoration: underline; font-family: 'Courier New';"&gt;Step 1: &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: green; font-size: 11pt;"&gt;I sorted the set_1 data set:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: green; font-size: 11pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: green; font-size: 11pt;"&gt;proc sort data=set_1 out = b;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: green; font-size: 11pt;"&gt;&amp;nbsp; by account_number&amp;nbsp; current_date;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: green; font-size: 11pt;"&gt;run;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: green; font-size: 11pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: green; font-size: 11pt; background: white; text-decoration: underline; font-family: 'Courier New';"&gt;Step 2:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: green; font-size: 11pt;"&gt;Then ran the hash code.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: green; font-size: 11pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: green; font-size: 11pt; background: white; text-decoration: underline; font-family: 'Courier New';"&gt;Step 3:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: green; font-size: 11pt;"&gt;It generated the following results which is very correct given my conditions.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: green; font-size: 11pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;These are the results:&lt;/P&gt;&lt;P&gt;Obs&amp;nbsp; Current_date&amp;nbsp;&amp;nbsp;&amp;nbsp; Current&amp;nbsp;&amp;nbsp;&amp;nbsp; 1_to_30&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 30_to_60&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 60_to_90&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 90+&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; NPNA &lt;STRONG style="color: #800000;"&gt;(these are vairable headings)&lt;/STRONG&gt;&lt;/P&gt;&lt;TABLE border="1" cellpadding="0" cellspacing="0" style="border: #4f493b 1pt solid;"&gt;&lt;TBODY&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="1" cellpadding="0" cellspacing="0" style="border: #4f493b 1pt solid;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;1&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;28FEB2010&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;24&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;25&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;2&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;31MAR2010&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;25&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;23&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;3&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;30APR2010&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;25&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;23&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;4&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;31MAY2010&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;25&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;23&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;5&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;30JUN2010&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;23&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;6&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;31JUL2010&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;85&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;7&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;31DEC2010&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;8&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;31JAN2011&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;25&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;18&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;9&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;28FEB2011&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;43&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;10&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;31MAR2011&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;11&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;30APR2011&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;12&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;31MAY2011&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;85&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" valign="top"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="font-family: 'Times New Roman';"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style=": ; color: fuchsia; background: white; font-size: 16pt; font-family: 'Courier New'; text-decoration: underline;"&gt;New problem:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: andale mono,times; background: white; color: green; font-size: 14pt;"&gt;I added another bank (bank_number=20) to the set_1 and populated the same data values found in bank=10&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: andale mono,times; background: white; color: green; font-size: 14pt;"&gt;in set_1 for the new bank too, and created a new data set (see attached data set_2).&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: andale mono,times; background: white; color: green; font-size: 14pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: andale mono,times; background: white; color: green; font-size: 14pt;"&gt;This time I should do the sorting taking "bank_number account_number&amp;nbsp; current_date" as sorting variables. Why? Because these are the 3 variables that would uniquely identify a record (this is sure!).&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: andale mono,times; background: white; color: green; font-size: 14pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: andale mono,times; background: white; color: green; font-size: 14pt;"&gt;proc sort data=set_2 out = c;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: andale mono,times; background: white; color: green; font-size: 14pt;"&gt;&amp;nbsp; by bank_number account_number&amp;nbsp; current_date;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: andale mono,times; background: white; color: green; font-size: 14pt;"&gt;run;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: green;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style=": ; color: fuchsia; background: white; font-size: 16pt; font-family: 'Courier New'; text-decoration: underline;"&gt;Question:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: green; font-size: 11pt;"&gt;When I now try to apply the hash code for data set "c", log gives this error message.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: green; font-size: 11pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: red; font-size: 11pt;"&gt;"ERROR: BY variables are not properly sorted on data set WORK.C."&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: green; font-size: 11pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: green; font-size: 11pt;"&gt;Could an expert please help me to tweak this hash code to avoid this problem? &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: green; font-size: 11pt;"&gt;(may be we need to incorporate my new sorting order into hash code which &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: green; font-size: 11pt;"&gt;is "bank_number account_number&amp;nbsp; current_date"&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: green; font-size: 11pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: green; font-size: 11pt;"&gt;One more thing, if I just sort the data set_2 by "account_number&amp;nbsp; current_date" and apply the hash code, then the replicated bank_number 20's data are ignored from summing up.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: green; font-size: 11pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #ff6600; font-size: 11pt; background: white; font-family: 'Courier New';"&gt;(Optional reading) &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: fuchsia; font-size: 11pt; background: white; text-decoration: underline; font-family: 'Courier New';"&gt;These are the conditions Hash code cleverly captures&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style=": ; color: green; background: white; font-size: 11pt; font-family: 'Courier New'; text-decoration: underline;"&gt;Condition 1:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: green; font-size: 11pt;"&gt;"Balances corresponding to NPNA Arrears_Band have to be summed up for only those accounts that have fallen into NPNA status after&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: green; font-size: 11pt;"&gt;28FEB2010. NPNA balances in 28FEB2010 and in all subsequent months of those accounts that were already in NPNA status&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: green; font-size: 11pt;"&gt;in 28FEB2010 should be omitted from summing up". &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: green; font-size: 11pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;OL style="list-style-type: upper-alpha;"&gt;&lt;LI&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: green; font-size: 11pt;"&gt;E.g. In bank number 10, Account 1111111111 's&lt;/SPAN&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: green; font-size: 11pt;"&gt;NPNA balance should be excluded from summing up&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: green; font-size: 11pt;"&gt;in 28FEB2010 and in all subsequent months because it was already in NPNA status when we begin our modeling period in 28FEB2010 and this account continued to be NPNA throughout its life.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: green; font-size: 11pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style=": ; color: green; background: white; font-size: 11pt; font-family: 'Courier New'; text-decoration: underline;"&gt;Condition 2:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: green; font-size: 11pt;"&gt;However, if an account has started with "NPNA" status from 28FEB2010 but it has not continued its NPNA status throughout its life, then these type of accounts should be excluded from the &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: green; font-size: 11pt;"&gt;condition 1 above although &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: green; font-size: 11pt;"&gt;these accounts also have started with "NPNA" status from 28FEB2010 itself.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: green; font-size: 11pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: green; font-size: 11pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: green; font-size: 11pt;"&gt;E.g. A/C 4444444444 has started its life with "arreres_band=NPNA in 28FEB2010 but then improved in 31Jan2011 into “1-30” arrears&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: green; font-size: 11pt;"&gt;bucket.&amp;nbsp; Again fallen into NPNA delq. bucket in&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: green; font-size: 11pt;"&gt;28FEB2011. Then again improved to "current" in 31May2011.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: green; font-size: 11pt;"&gt;So, this accounts NPNA balance in 28Feb2010 has to be taken for summing up.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: green; font-size: 11pt;"&gt;And its NPNA balance in 28Feb2011 has to be taken for summing up.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your help is greatly apprecaited!&lt;/P&gt;&lt;P&gt;Mirisage&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Aug 2012 16:02:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Why-this-hash-code-works-for-a-single-bank-but-not-for-2-banks/m-p/102060#M28640</guid>
      <dc:creator>Mirisage</dc:creator>
      <dc:date>2012-08-22T16:02:42Z</dc:date>
    </item>
    <item>
      <title>Re: Why this hash code works for a single bank but not for 2 banks ?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Why-this-hash-code-works-for-a-single-bank-but-not-for-2-banks/m-p/102061#M28641</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Mirisage:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The code you present has a DO UNTIL (LAST.ACCOUNT_NUMBER) loop in which you accrete the last occuring record for each CURRENT_DATE and then output the balance from each date.&lt;/P&gt;&lt;P&gt;When you add data for a second bank, there is no guarantee the account numbers will be sequential across ALL banks, thus you can receive the "not properly sorted" log message.&amp;nbsp; Try BY BANK ACCOUNT_NUMBER inside the first loop, or BY ACCOUNT_NUMBER NOTSORTED if there is a guarantee that account numbers are distinct across all banks.&lt;/P&gt;&lt;P&gt;With only a million records, the use of hash may be hiding more of the processing logic than desired.&amp;nbsp; Additionally the data step is transposing the band data into metadata as a column name.&amp;nbsp; Many coder prefer highly categorical data and present the transpositions via the reporting procs REPORT or TABULATE, or as a data processing step if use proc TRANSPOSE.&lt;/P&gt;&lt;P&gt;Conversely, if you go with hash, you might want to do the summary in a hash as well.&lt;/P&gt;&lt;P&gt;Why is NPNA missing for 31MAR2011 and 30APR2011.&lt;/P&gt;&lt;P&gt;According to attached SET_1, both accounts 4444 and 5555 fell into NPNA on 28FEB2011&lt;/P&gt;&lt;P&gt;Because the business logic is the most important feature, my recommendation is to rewrite to code without the hash, for example:&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;SPAN style="color: #000000;"&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;* libname MIRISAGE 'C:\Users\Richard\Downloads';&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;ods chtml file="%sysfunc(pathname(WORK))\sample.html" style=journal;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;* format $band. will be used in tabulate and will control the order in which the categorical columns are layed out;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;proc format ;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000000;"&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; value $band (notsorted)&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000000;"&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Current' = 'Current'&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000000;"&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; '1 - 30'&amp;nbsp; = '1 - 30'&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000000;"&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; '30 - 60' = '30 - 60'&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000000;"&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; '60 - 90' = '60 - 90'&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000000;"&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; '90 +'&amp;nbsp;&amp;nbsp;&amp;nbsp; = '90 +'&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000000;"&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'NPNA'&amp;nbsp;&amp;nbsp;&amp;nbsp; = 'NPNA'&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000000;"&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; ;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000000;"&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;run;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;* view performs business logic of transactional sequence evaluation for computing which NPNA balances are summed;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;data evaluated_transactions / view=evaluated_transactions;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000000;"&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; length prior_band $20;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000000;"&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; prior_band = '';&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000000;"&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; became_npna = .;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000000;"&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; do _n_ = 1 by 1 until (last.account_number);&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000000;"&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; set mirisage.set_1;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000000;"&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; by bank_number account_number;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000000;"&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if current_date &amp;gt; '28feb2010'd and prior_band ne arrears_band then do;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000000;"&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if prior_band ne '' and arrears_band = 'NPNA' then became_npna = current_date;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000000;"&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; prior_band = arrears_band;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000000;"&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; end;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000000;"&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; end;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; do _n_ = 1 to _n_;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000000;"&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; set mirisage.set_1;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000000;"&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if arrears_band = 'NPNA' and became_npna &amp;lt;= '28feb2010'd then balance = .;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000000;"&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; output;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000000;"&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; end;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; drop prior_band;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000000;"&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; format became_npna date9.;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000000;"&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;run;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;* use tabulate to report the data;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;proc tabulate data=evaluated_transactions;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000000;"&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; where current_date &amp;gt;= '28feb2010'd;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000000;"&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; class current_date;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000000;"&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; class arrears_band / PRELOADFMT order=data ;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000000;"&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; var balance;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; * tweak this, balance*N shows how many balances were set to missing by business logic;&lt;BR /&gt;&lt;SPAN style="color: #000000;"&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; table current_date, arrears_band*(N balance*SUM balance*NMISS);&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; format arrears_band $band.;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000000;"&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;run;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;ods _all_ close;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-family: arial,helvetica,sans-serif;"&gt;Save the hashing for unusual lookup conditions, high-speed master detail lookups and when necessary 'extreme optimization' requirement situations.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-family: arial,helvetica,sans-serif;"&gt;Happy Coding,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-family: arial,helvetica,sans-serif;"&gt;Richard A. DeVenezia&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Aug 2012 15:58:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Why-this-hash-code-works-for-a-single-bank-but-not-for-2-banks/m-p/102061#M28641</guid>
      <dc:creator>RichardDeVen</dc:creator>
      <dc:date>2012-08-23T15:58:39Z</dc:date>
    </item>
    <item>
      <title>Re: Why this hash code works for a single bank but not for 2 banks ?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Why-this-hash-code-works-for-a-single-bank-but-not-for-2-banks/m-p/102062#M28642</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Richard,&lt;/P&gt;&lt;P&gt;Thank you so much for this alternative code which works very well except in one "condition" that is yet to be satisfied.&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: fuchsia;"&gt;If you could help me to tweak your code to satisfy this condition it would be a great help as I am in a tight deadline.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This was raised in your previous response too like this &lt;STRONG style="text-decoration: underline;"&gt;&lt;SPAN lang="EN-GB" style="color: blue;"&gt;"Why is NPNA missing for 31MAR2011 and 30APR2011 . &lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;SPAN style="color: blue; text-decoration: underline;"&gt;According to attached SET_1, both accounts 4444 and 5555 fell into NPNA on 28FEB2011&lt;/SPAN&gt;&lt;SPAN style="text-decoration: underline;"&gt;&lt;SPAN lang="EN-GB" style="color: blue;"&gt;"&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: red;"&gt;The reason is this.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;I provide below two pictures to show how the business logic neccesitates me to treat NPNA balances for summing up across months.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AsTable 6 shows, if an account continues its entire life in NPNA bucket, then all NPNA dollars should be igonred from summing up (I striked off all $ s&lt;/P&gt;&lt;P&gt;in yellow column). - this condition is captured by your code - thanks&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;Table 6: Continuing NPNAs&lt;/SPAN&gt;&lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" style="PADDING-BOTTOM: 0px; PADDING-LEFT: 5.4pt; WIDTH: 517px; PADDING-RIGHT: 5.4pt; MARGIN-LEFT: 5.15pt; PADDING-TOP: 0px;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: windowtext 1pt solid; padding-left: 5.4pt; padding-right: 5.4pt; border-top: windowtext 1pt solid; border-right: medium none;" valign="bottom" width="101"&gt;&lt;P align="center" style="text-align: center;"&gt;&lt;STRONG&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;Current_date&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD colspan="6" nowrap="nowrap" style="border-bottom: windowtext 1pt solid; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; border-top: windowtext 1pt solid; border-right: windowtext 1pt solid;" valign="bottom" width="416"&gt;&lt;P align="center" style="text-align: center;"&gt;&lt;STRONG&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;Delinquency Cycle&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: windowtext 1pt solid; padding-left: 5.4pt; padding-right: 5.4pt; border-top: windowtext 1pt solid; border-right: medium none;" valign="bottom" width="101"&gt;&lt;P align="center" style="text-align: center;"&gt;&lt;STRONG&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt; &lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="border-bottom: windowtext 1pt solid; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; border-top: medium none; border-right: medium none;" valign="bottom" width="72"&gt;&lt;P align="center" style="text-align: center;"&gt;&lt;STRONG&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;Current&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="border-bottom: windowtext 1pt solid; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; border-top: windowtext 1pt solid; border-right: medium none;" valign="bottom" width="84"&gt;&lt;P align="center" style="text-align: center;"&gt;&lt;STRONG&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;1-30&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="border-bottom: windowtext 1pt solid; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; border-top: windowtext 1pt solid; border-right: medium none;" valign="bottom" width="72"&gt;&lt;P align="center" style="text-align: center;"&gt;&lt;STRONG&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;30-60&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="border-bottom: windowtext 1pt solid; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; border-top: windowtext 1pt solid; border-right: medium none;" valign="bottom" width="72"&gt;&lt;P align="center" style="text-align: center;"&gt;&lt;STRONG&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;60-90&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="border-bottom: windowtext 1pt solid; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; border-top: windowtext 1pt solid; border-right: medium none;" valign="bottom" width="53"&gt;&lt;P align="center" style="text-align: center;"&gt;&lt;STRONG&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;90+&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="border-bottom: windowtext 1pt solid; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; border-top: windowtext 1pt solid; border-right: windowtext 1pt solid;" valign="bottom" width="63"&gt;&lt;P align="center" style="text-align: center;"&gt;&lt;STRONG&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;NPNA&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: windowtext 1pt solid; padding-left: 5.4pt; padding-right: 5.4pt; border-top: medium none; border-right: medium none;" valign="bottom" width="101"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;28-Feb-10&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="72"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="84"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="72"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="72"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="53"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; background: yellow; border-top: medium none; border-right: windowtext 1pt solid;" valign="bottom" width="63"&gt;&lt;P align="center" style="text-align: center;"&gt;&lt;SPAN style="text-decoration: line-through;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; background: yellow; color: red; font-size: 9pt;"&gt;$ X&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: windowtext 1pt solid; padding-left: 5.4pt; padding-right: 5.4pt; border-top: medium none; border-right: medium none;" valign="bottom" width="101"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;31-Mar-10&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="72"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="84"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="72"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="72"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="53"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; background: yellow; border-top: medium none; border-right: windowtext 1pt solid;" valign="bottom" width="63"&gt;&lt;P align="center" style="text-align: center;"&gt;&lt;SPAN style="text-decoration: line-through;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; background: yellow; color: red; font-size: 9pt;"&gt;$ X&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: windowtext 1pt solid; padding-left: 5.4pt; padding-right: 5.4pt; border-top: medium none; border-right: medium none;" valign="bottom" width="101"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;30-Apr-10&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="72"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="84"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="72"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="72"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="53"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; background: yellow; border-top: medium none; border-right: windowtext 1pt solid;" valign="bottom" width="63"&gt;&lt;P align="center" style="text-align: center;"&gt;&lt;SPAN style="text-decoration: line-through;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; background: yellow; color: red; font-size: 9pt;"&gt;$ X&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: windowtext 1pt solid; padding-left: 5.4pt; padding-right: 5.4pt; border-top: medium none; border-right: medium none;" valign="bottom" width="101"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;31-May-10&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="72"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="84"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="72"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="72"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="53"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; background: yellow; border-top: medium none; border-right: windowtext 1pt solid;" valign="bottom" width="63"&gt;&lt;P align="center" style="text-align: center;"&gt;&lt;SPAN style="text-decoration: line-through;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; background: yellow; color: red; font-size: 9pt;"&gt;$ X&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: windowtext 1pt solid; padding-left: 5.4pt; padding-right: 5.4pt; border-top: medium none; border-right: medium none;" valign="bottom" width="101"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;30-Jun-10&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="72"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="84"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="72"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="72"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="53"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; background: yellow; border-top: medium none; border-right: windowtext 1pt solid;" valign="bottom" width="63"&gt;&lt;P align="center" style="text-align: center;"&gt;&lt;SPAN style="text-decoration: line-through;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; background: yellow; color: red; font-size: 9pt;"&gt;$ X&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: windowtext 1pt solid; padding-left: 5.4pt; padding-right: 5.4pt; border-top: medium none; border-right: medium none;" valign="bottom" width="101"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;31-Jul-10&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="72"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="84"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="72"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="72"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="53"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; background: yellow; border-top: medium none; border-right: windowtext 1pt solid;" valign="bottom" width="63"&gt;&lt;P align="center" style="text-align: center;"&gt;&lt;SPAN style="text-decoration: line-through;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; background: yellow; color: red; font-size: 9pt;"&gt;$ X&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: windowtext 1pt solid; padding-left: 5.4pt; padding-right: 5.4pt; border-top: medium none; border-right: medium none;" valign="bottom" width="101"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;31-Aug-10&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="72"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="84"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="72"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="72"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="53"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; background: yellow; border-top: medium none; border-right: windowtext 1pt solid;" valign="bottom" width="63"&gt;&lt;P align="center" style="text-align: center;"&gt;&lt;SPAN style="text-decoration: line-through;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; background: yellow; color: red; font-size: 9pt;"&gt;$ X&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: windowtext 1pt solid; padding-left: 5.4pt; padding-right: 5.4pt; border-top: medium none; border-right: medium none;" valign="bottom" width="101"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;30-Sep-10&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="72"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="84"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="72"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="72"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="53"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; background: yellow; border-top: medium none; border-right: windowtext 1pt solid;" valign="bottom" width="63"&gt;&lt;P align="center" style="text-align: center;"&gt;&lt;SPAN style="text-decoration: line-through;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; background: yellow; color: red; font-size: 9pt;"&gt;$ X&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: windowtext 1pt solid; padding-left: 5.4pt; padding-right: 5.4pt; border-top: medium none; border-right: medium none;" valign="bottom" width="101"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;31-Oct-10&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="72"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="84"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="72"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="72"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="53"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; background: yellow; border-top: medium none; border-right: windowtext 1pt solid;" valign="bottom" width="63"&gt;&lt;P align="center" style="text-align: center;"&gt;&lt;SPAN style="text-decoration: line-through;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; background: yellow; color: red; font-size: 9pt;"&gt;$ X&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: windowtext 1pt solid; padding-left: 5.4pt; padding-right: 5.4pt; border-top: medium none; border-right: medium none;" valign="bottom" width="101"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;30-Nov-10&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="72"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="84"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="72"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="72"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="53"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; background: yellow; border-top: medium none; border-right: windowtext 1pt solid;" valign="bottom" width="63"&gt;&lt;P align="center" style="text-align: center;"&gt;&lt;SPAN style="text-decoration: line-through;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; background: yellow; color: red; font-size: 9pt;"&gt;$ X&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: windowtext 1pt solid; padding-left: 5.4pt; padding-right: 5.4pt; border-top: medium none; border-right: medium none;" valign="bottom" width="101"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;31-Dec-10&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="72"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="84"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="72"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="72"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="53"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; background: yellow; border-top: medium none; border-right: windowtext 1pt solid;" valign="bottom" width="63"&gt;&lt;P align="center" style="text-align: center;"&gt;&lt;SPAN style="text-decoration: line-through;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; background: yellow; color: red; font-size: 9pt;"&gt;$ X&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: windowtext 1pt solid; padding-left: 5.4pt; padding-right: 5.4pt; border-top: medium none; border-right: medium none;" valign="bottom" width="101"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;31-Jan-11&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="72"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="84"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="72"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="72"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="53"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; background: yellow; border-top: medium none; border-right: windowtext 1pt solid;" valign="bottom" width="63"&gt;&lt;P align="center" style="text-align: center;"&gt;&lt;SPAN style="text-decoration: line-through;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; background: yellow; color: red; font-size: 9pt;"&gt;$ X&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: windowtext 1pt solid; padding-left: 5.4pt; padding-right: 5.4pt; border-top: medium none; border-right: medium none;" valign="bottom" width="101"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;28-Feb-11&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="72"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="84"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="72"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="72"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="53"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; background: yellow; border-top: medium none; border-right: windowtext 1pt solid;" valign="bottom" width="63"&gt;&lt;P align="center" style="text-align: center;"&gt;&lt;SPAN style="text-decoration: line-through;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; background: yellow; color: red; font-size: 9pt;"&gt;$ X&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: windowtext 1pt solid; padding-left: 5.4pt; padding-right: 5.4pt; border-top: medium none; border-right: medium none;" valign="bottom" width="101"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;31-Mar-11&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="72"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="84"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="72"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="72"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="53"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; background: yellow; border-top: medium none; border-right: windowtext 1pt solid;" valign="bottom" width="63"&gt;&lt;P align="center" style="text-align: center;"&gt;&lt;SPAN style="text-decoration: line-through;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; background: yellow; color: red; font-size: 9pt;"&gt;$ X&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: windowtext 1pt solid; padding-left: 5.4pt; padding-right: 5.4pt; border-top: medium none; border-right: medium none;" valign="bottom" width="101"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;30-Apr-11&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="72"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="84"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="72"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="72"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="53"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; background: yellow; border-top: medium none; border-right: windowtext 1pt solid;" valign="bottom" width="63"&gt;&lt;P align="center" style="text-align: center;"&gt;&lt;SPAN style="text-decoration: line-through;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; background: yellow; color: red; font-size: 9pt;"&gt;$ X&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: windowtext 1pt solid; padding-left: 5.4pt; padding-right: 5.4pt; border-top: medium none; border-right: medium none;" valign="bottom" width="101"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;31-May-11&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="72"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="84"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="72"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="72"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="53"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; background: yellow; border-top: medium none; border-right: windowtext 1pt solid;" valign="bottom" width="63"&gt;&lt;P align="center" style="text-align: center;"&gt;&lt;SPAN style="text-decoration: line-through;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; background: yellow; color: red; font-size: 9pt;"&gt;$ X&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: windowtext 1pt solid; padding-left: 5.4pt; padding-right: 5.4pt; border-top: medium none; border-right: medium none;" valign="bottom" width="101"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;30-Jun-11&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="72"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="84"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="72"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="72"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="53"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; background: yellow; border-top: medium none; border-right: windowtext 1pt solid;" valign="bottom" width="63"&gt;&lt;P align="center" style="text-align: center;"&gt;&lt;SPAN style="text-decoration: line-through;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; background: yellow; color: red; font-size: 9pt;"&gt;$ X&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: windowtext 1pt solid; padding-left: 5.4pt; padding-right: 5.4pt; border-top: medium none; border-right: medium none;" valign="bottom" width="101"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;31-Jul-11&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="72"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="84"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="72"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="72"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="53"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; background: yellow; border-top: medium none; border-right: windowtext 1pt solid;" valign="bottom" width="63"&gt;&lt;P align="center" style="text-align: center;"&gt;&lt;SPAN style="text-decoration: line-through;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; background: yellow; color: red; font-size: 9pt;"&gt;$ X&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: windowtext 1pt solid; padding-left: 5.4pt; padding-right: 5.4pt; border-top: medium none; border-right: medium none;" valign="bottom" width="101"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;31-Aug-11&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="72"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="84"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="72"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="72"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="53"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; background: yellow; border-top: medium none; border-right: windowtext 1pt solid;" valign="bottom" width="63"&gt;&lt;P align="center" style="text-align: center;"&gt;&lt;SPAN style="text-decoration: line-through;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; background: yellow; color: red; font-size: 9pt;"&gt;$ X&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: windowtext 1pt solid; padding-left: 5.4pt; padding-right: 5.4pt; border-top: medium none; border-right: medium none;" valign="bottom" width="101"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;30-Sep-11&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="72"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="84"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="72"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="72"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="53"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; background: yellow; border-top: medium none; border-right: windowtext 1pt solid;" valign="bottom" width="63"&gt;&lt;P align="center" style="text-align: center;"&gt;&lt;SPAN style="text-decoration: line-through;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; background: yellow; color: red; font-size: 9pt;"&gt;$ X&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: windowtext 1pt solid; padding-left: 5.4pt; padding-right: 5.4pt; border-top: medium none; border-right: medium none;" valign="bottom" width="101"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;31-Oct-11&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="72"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="84"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="72"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="72"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="53"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; background: yellow; border-top: medium none; border-right: windowtext 1pt solid;" valign="bottom" width="63"&gt;&lt;P align="center" style="text-align: center;"&gt;&lt;SPAN style="text-decoration: line-through;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; background: yellow; color: red; font-size: 9pt;"&gt;$ X&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: windowtext 1pt solid; padding-left: 5.4pt; padding-right: 5.4pt; border-top: medium none; border-right: medium none;" valign="bottom" width="101"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;30-Nov-11&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="72"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="84"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="72"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="72"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="53"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; background: yellow; border-top: medium none; border-right: windowtext 1pt solid;" valign="bottom" width="63"&gt;&lt;P align="center" style="text-align: center;"&gt;&lt;SPAN style="text-decoration: line-through;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; background: yellow; color: red; font-size: 9pt;"&gt;$ X&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: windowtext 1pt solid; padding-left: 5.4pt; padding-right: 5.4pt; border-top: medium none; border-right: medium none;" valign="bottom" width="101"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;31-Dec-11&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="72"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="84"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="72"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="72"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="bottom" width="53"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; background: yellow; border-top: medium none; border-right: windowtext 1pt solid;" valign="bottom" width="63"&gt;&lt;P align="center" style="text-align: center;"&gt;&lt;SPAN style="text-decoration: line-through;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; background: yellow; color: red; font-size: 9pt;"&gt;$ X&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD nowrap="nowrap" style="border-bottom: windowtext 1pt solid; border-left: windowtext 1pt solid; padding-left: 5.4pt; padding-right: 5.4pt; border-top: medium none; border-right: medium none;" valign="bottom" width="101"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;31-Jan-12&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="border-bottom: windowtext 1pt solid; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; background: white; border-top: medium none; border-right: medium none;" valign="bottom" width="72"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="border-bottom: windowtext 1pt solid; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; background: white; border-top: medium none; border-right: medium none;" valign="bottom" width="84"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="border-bottom: windowtext 1pt solid; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; background: white; border-top: medium none; border-right: medium none;" valign="bottom" width="72"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="border-bottom: windowtext 1pt solid; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; background: white; border-top: medium none; border-right: medium none;" valign="bottom" width="72"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="border-bottom: windowtext 1pt solid; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; background: white; border-top: medium none; border-right: medium none;" valign="bottom" width="53"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="border-bottom: windowtext 1pt solid; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; background: yellow; border-top: medium none; border-right: windowtext 1pt solid;" valign="bottom" width="63"&gt;&lt;P align="center" style="text-align: center;"&gt;&lt;SPAN style="text-decoration: line-through;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; background: yellow; color: red; font-size: 9pt;"&gt;$ X&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;&lt;/SPAN&gt;&lt;SPAN lang="EN-GB" style="font-family: Verdana; color: fuchsia; font-size: 9pt;"&gt;Table 7 shows how to treat NPNA $ s in other situations which is not captured by the code.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-family: Verdana; color: fuchsia; font-size: 9pt;"&gt;Stricken off NPNA $ s in the yellow column should be excluded from summing up while only non-stricekn off&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-family: Verdana; color: fuchsia; font-size: 9pt;"&gt;$ s in yellow coulmn should be summed up (this is yet to be incorproated into the code).&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: Verdana; color: fuchsia;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-family: Verdana; background: yellow; color: fuchsia; font-size: 9pt;"&gt;I wonder if you could help me to tweak your code to incorparate this condition for NPNA $ summing up (last request).&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;&lt;/SPAN&gt; &lt;/P&gt;&lt;P style="text-indent: -1in; padding-left: 90px;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;Table 7:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Continuing NPNAs that cured, fallen into NPNA again, cured and fallen back into NPNA eventually &lt;/SPAN&gt;&lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" style="PADDING-BOTTOM: 0px; PADDING-LEFT: 5.4pt; WIDTH: 512px; PADDING-RIGHT: 5.4pt; MARGIN-LEFT: 5.15pt; PADDING-TOP: 0px;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: windowtext 1pt solid; padding-left: 5.4pt; padding-right: 5.4pt; border-top: windowtext 1pt solid; border-right: medium none;" valign="bottom" width="131"&gt;&lt;P align="center" style="text-align: center;"&gt;&lt;STRONG&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;Current_date&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD colspan="6" nowrap="nowrap" style="border-bottom: windowtext 1pt solid; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; border-top: windowtext 1pt solid; border-right: windowtext 1pt solid;" valign="bottom" width="381"&gt;&lt;P align="center" style="text-align: center;"&gt;&lt;STRONG&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;Delinquency Cycle&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: windowtext 1pt solid; padding-left: 5.4pt; padding-right: 5.4pt; border-top: windowtext 1pt solid; border-right: medium none;" valign="bottom" width="131"&gt;&lt;P align="center" style="text-align: center;"&gt;&lt;STRONG&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt; &lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="border-bottom: windowtext 1pt solid; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; border-top: medium none; border-right: medium none;" valign="bottom" width="63"&gt;&lt;P align="center" style="text-align: center;"&gt;&lt;STRONG&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;Current&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="border-bottom: windowtext 1pt solid; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; border-top: windowtext 1pt solid; border-right: medium none;" valign="bottom" width="92"&gt;&lt;P align="center" style="text-align: center;"&gt;&lt;STRONG&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;1-30&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="border-bottom: windowtext 1pt solid; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; border-top: windowtext 1pt solid; border-right: medium none;" valign="bottom" width="64"&gt;&lt;P align="center" style="text-align: center;"&gt;&lt;STRONG&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;30-60&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="border-bottom: windowtext 1pt solid; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; border-top: windowtext 1pt solid; border-right: medium none;" valign="bottom" width="63"&gt;&lt;P align="center" style="text-align: center;"&gt;&lt;STRONG&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;60-90&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="border-bottom: windowtext 1pt solid; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; border-top: windowtext 1pt solid; border-right: medium none;" valign="bottom" width="37"&gt;&lt;P align="center" style="text-align: center;"&gt;&lt;STRONG&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;90+&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="border-bottom: windowtext 1pt solid; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; border-top: windowtext 1pt solid; border-right: windowtext 1pt solid;" valign="bottom" width="63"&gt;&lt;P align="center" style="text-align: center;"&gt;&lt;STRONG&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;NPNA&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: windowtext 1pt solid; padding-left: 5.4pt; padding-right: 5.4pt; border-top: medium none; border-right: medium none;" valign="bottom" width="131"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;28-Feb-10&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="top" width="63"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="top" width="92"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="top" width="64"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="top" width="63"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="top" width="37"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; background: yellow; border-top: medium none; border-right: windowtext 1pt solid;" valign="top" width="63"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;$6248&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: windowtext 1pt solid; padding-left: 5.4pt; padding-right: 5.4pt; border-top: medium none; border-right: medium none;" valign="bottom" width="131"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;31-Mar-10&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="top" width="63"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="top" width="92"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="top" width="64"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="top" width="63"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="top" width="37"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; background: yellow; border-top: medium none; border-right: windowtext 1pt solid;" valign="top" width="63"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;$&lt;/SPAN&gt;&lt;SPAN style="text-decoration: line-through;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: red; font-size: 9pt;"&gt;6248&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: windowtext 1pt solid; padding-left: 5.4pt; padding-right: 5.4pt; border-top: medium none; border-right: medium none;" valign="bottom" width="131"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;30-Apr-10&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="top" width="63"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="top" width="92"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="top" width="64"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="top" width="63"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="top" width="37"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; background: yellow; border-top: medium none; border-right: windowtext 1pt solid;" valign="top" width="63"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;$&lt;/SPAN&gt;&lt;SPAN style="text-decoration: line-through;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: red; font-size: 9pt;"&gt;6248&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: windowtext 1pt solid; padding-left: 5.4pt; padding-right: 5.4pt; border-top: medium none; border-right: medium none;" valign="bottom" width="131"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;31-May-10&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="top" width="63"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="top" width="92"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="top" width="64"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="top" width="63"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="top" width="37"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; background: yellow; border-top: medium none; border-right: windowtext 1pt solid;" valign="top" width="63"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;$&lt;/SPAN&gt;&lt;SPAN style="text-decoration: line-through;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: red; font-size: 9pt;"&gt;6248&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: windowtext 1pt solid; padding-left: 5.4pt; padding-right: 5.4pt; border-top: medium none; border-right: medium none;" valign="bottom" width="131"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;30-Jun-10&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; background: yellow; border-top: medium none; border-right: windowtext 1pt solid;" valign="top" width="63"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;$4830&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="top" width="92"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="top" width="64"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="top" width="63"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="top" width="37"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; background: white; border-top: medium none; border-right: windowtext 1pt solid;" valign="top" width="63"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: windowtext 1pt solid; padding-left: 5.4pt; padding-right: 5.4pt; border-top: medium none; border-right: medium none;" valign="bottom" width="131"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;31-Jul-10&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="top" width="63"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="top" width="92"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; background: yellow; border-top: medium none; border-right: windowtext 1pt solid;" valign="top" width="64"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;$4830&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="top" width="63"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="top" width="37"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; background: white; border-top: medium none; border-right: windowtext 1pt solid;" valign="top" width="63"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: windowtext 1pt solid; padding-left: 5.4pt; padding-right: 5.4pt; border-top: medium none; border-right: medium none;" valign="bottom" width="131"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;31-Aug-10&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="top" width="63"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="top" width="92"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; background: yellow; border-top: medium none; border-right: windowtext 1pt solid;" valign="top" width="64"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;$4830&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="top" width="63"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="top" width="37"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; background: white; border-top: medium none; border-right: windowtext 1pt solid;" valign="top" width="63"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: windowtext 1pt solid; padding-left: 5.4pt; padding-right: 5.4pt; border-top: medium none; border-right: medium none;" valign="bottom" width="131"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;30-Sep-10&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="top" width="63"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="top" width="92"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="top" width="64"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; background: yellow; border-top: medium none; border-right: windowtext 1pt solid;" valign="top" width="63"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;$4830&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="top" width="37"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; background: white; border-top: medium none; border-right: windowtext 1pt solid;" valign="top" width="63"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: windowtext 1pt solid; padding-left: 5.4pt; padding-right: 5.4pt; border-top: medium none; border-right: medium none;" valign="bottom" width="131"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;31-Oct-10&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="top" width="63"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="top" width="92"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="top" width="64"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="top" width="63"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="top" width="37"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; background: yellow; border-top: medium none; border-right: windowtext 1pt solid;" valign="top" width="63"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;$4831&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: windowtext 1pt solid; padding-left: 5.4pt; padding-right: 5.4pt; border-top: medium none; border-right: medium none;" valign="bottom" width="131"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;30-Nov-10&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: yellow;" valign="top" width="63"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; background: yellow; font-size: 9pt;"&gt;$4831&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="top" width="92"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="top" width="64"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="top" width="63"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="top" width="37"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; background: yellow; border-top: medium none; border-right: windowtext 1pt solid;" valign="top" width="63"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="text-decoration: line-through;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: red; font-size: 9pt;"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: windowtext 1pt solid; padding-left: 5.4pt; padding-right: 5.4pt; border-top: medium none; border-right: medium none;" valign="bottom" width="131"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;31-Dec-10&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="top" width="63"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="top" width="92"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="top" width="64"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="top" width="63"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="top" width="37"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; background: yellow; border-top: medium none; border-right: windowtext 1pt solid;" valign="top" width="63"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;$4831&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: windowtext 1pt solid; padding-left: 5.4pt; padding-right: 5.4pt; border-top: medium none; border-right: medium none;" valign="bottom" width="131"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;31-Jan-11&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="top" width="63"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="top" width="92"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="top" width="64"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="top" width="63"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="top" width="37"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="border-bottom: windowtext 1pt solid; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; background: yellow; border-top: medium none; border-right: windowtext 1pt solid;" valign="top" width="63"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;$&lt;/SPAN&gt;&lt;SPAN style="text-decoration: line-through;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: red; font-size: 9pt;"&gt;4831&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: windowtext 1pt solid; padding-left: 5.4pt; padding-right: 5.4pt; border-top: medium none; border-right: medium none;" valign="bottom" width="131"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;28-Feb-11&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; background: yellow; border-top: medium none; border-right: windowtext 1pt solid;" valign="top" width="63"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;$2630&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="top" width="92"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="top" width="64"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="top" width="63"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="top" width="37"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; background: white; border-top: medium none; border-right: windowtext 1pt solid;" valign="top" width="63"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: windowtext 1pt solid; padding-left: 5.4pt; padding-right: 5.4pt; border-top: medium none; border-right: medium none;" valign="bottom" width="131"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;31-Mar-11&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="top" width="63"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; background: yellow; border-top: medium none; border-right: windowtext 1pt solid;" valign="top" width="92"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;$2630&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="top" width="64"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="top" width="63"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="top" width="37"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; background: white; border-top: medium none; border-right: windowtext 1pt solid;" valign="top" width="63"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: windowtext 1pt solid; padding-left: 5.4pt; padding-right: 5.4pt; border-top: medium none; border-right: medium none;" valign="bottom" width="131"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;30-Apr-11&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="top" width="63"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="top" width="92"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; background: yellow; border-top: medium none; border-right: windowtext 1pt solid;" valign="top" width="64"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;$2630&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="top" width="63"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="top" width="37"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; background: white; border-top: medium none; border-right: windowtext 1pt solid;" valign="top" width="63"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: windowtext 1pt solid; padding-left: 5.4pt; padding-right: 5.4pt; border-top: medium none; border-right: medium none;" valign="bottom" width="131"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;31-May-11&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="top" width="63"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; background: yellow; border-top: medium none; border-right: windowtext 1pt solid;" valign="top" width="92"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;$2630&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="top" width="64"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="top" width="63"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="top" width="37"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; background: white; border-top: medium none; border-right: windowtext 1pt solid;" valign="top" width="63"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: windowtext 1pt solid; padding-left: 5.4pt; padding-right: 5.4pt; border-top: medium none; border-right: medium none;" valign="bottom" width="131"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;30-Jun-11&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; background: yellow; border-top: medium none; border-right: windowtext 1pt solid;" valign="top" width="63"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;$2630&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="top" width="92"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="top" width="64"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="top" width="63"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="top" width="37"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; background: white; border-top: medium none; border-right: windowtext 1pt solid;" valign="top" width="63"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: windowtext 1pt solid; padding-left: 5.4pt; padding-right: 5.4pt; border-top: medium none; border-right: medium none;" valign="bottom" width="131"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;31-Jul-11&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="top" width="63"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="top" width="92"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; border-top: medium none; border-right: windowtext 1pt solid;" valign="top" width="64"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="top" width="63"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="top" width="37"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; background: yellow; border-top: medium none; border-right: windowtext 1pt solid;" valign="top" width="63"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; background: yellow; color: black; font-size: 9pt;"&gt;$2630&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: windowtext 1pt solid; padding-left: 5.4pt; padding-right: 5.4pt; border-top: medium none; border-right: medium none;" valign="bottom" width="131"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;31-Aug-11&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="top" width="63"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="top" width="92"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="top" width="64"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; background: yellow; border-top: medium none; border-right: windowtext 1pt solid;" valign="top" width="63"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;$2630&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="top" width="37"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; background: white; border-top: medium none; border-right: windowtext 1pt solid;" valign="top" width="63"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: windowtext 1pt solid; padding-left: 5.4pt; padding-right: 5.4pt; border-top: medium none; border-right: medium none;" valign="bottom" width="131"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;30-Sep-11&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="top" width="63"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="top" width="92"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="top" width="64"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="top" width="63"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="top" width="37"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; background: yellow; border-top: medium none; border-right: windowtext 1pt solid;" valign="top" width="63"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;$247&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: windowtext 1pt solid; padding-left: 5.4pt; padding-right: 5.4pt; border-top: medium none; border-right: medium none;" valign="bottom" width="131"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;31-Oct-11&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="top" width="63"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="top" width="92"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="top" width="64"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="top" width="63"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="top" width="37"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; background: yellow; border-top: medium none; border-right: windowtext 1pt solid;" valign="top" width="63"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;$&lt;/SPAN&gt;&lt;SPAN style="text-decoration: line-through;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: red; font-size: 9pt;"&gt;247&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: windowtext 1pt solid; padding-left: 5.4pt; padding-right: 5.4pt; border-top: medium none; border-right: medium none;" valign="bottom" width="131"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;30-Nov-11&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="top" width="63"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="top" width="92"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="top" width="64"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="top" width="63"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding-left: 5.4pt; padding-right: 5.4pt; background: white;" valign="top" width="37"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="border-bottom: medium none; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; background: yellow; border-top: medium none; border-right: windowtext 1pt solid;" valign="top" width="63"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;$&lt;/SPAN&gt;&lt;SPAN style="text-decoration: line-through;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: red; font-size: 9pt;"&gt;247&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD nowrap="nowrap" style="border-bottom: windowtext 1pt solid; border-left: windowtext 1pt solid; padding-left: 5.4pt; padding-right: 5.4pt; border-top: medium none; border-right: medium none;" valign="bottom" width="131"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;31-Dec-11&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="border-bottom: windowtext 1pt solid; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; background: white; border-top: medium none; border-right: medium none;" valign="top" width="63"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="border-bottom: windowtext 1pt solid; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; background: white; border-top: medium none; border-right: medium none;" valign="top" width="92"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="border-bottom: windowtext 1pt solid; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; background: white; border-top: medium none; border-right: medium none;" valign="top" width="64"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="border-bottom: windowtext 1pt solid; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; background: white; border-top: medium none; border-right: medium none;" valign="top" width="63"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="border-bottom: windowtext 1pt solid; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; background: white; border-top: medium none; border-right: medium none;" valign="top" width="37"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="border-bottom: windowtext 1pt solid; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; background: yellow; border-top: medium none; border-right: windowtext 1pt solid;" valign="top" width="63"&gt;&lt;P align="right" style="text-align: right;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: black; font-size: 9pt;"&gt;$&lt;/SPAN&gt;&lt;SPAN style="text-decoration: line-through;"&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; color: red; font-size: 9pt;"&gt;247&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-size: 10pt;"&gt; Thank you for your time and expertise.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-size: 10pt;"&gt;Regards&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-size: 10pt;"&gt;&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-size: 10pt;"&gt;Mirisage&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-family: Courier; font-size: 9pt;"&gt;&lt;/SPAN&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Aug 2012 16:58:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Why-this-hash-code-works-for-a-single-bank-but-not-for-2-banks/m-p/102062#M28642</guid>
      <dc:creator>Mirisage</dc:creator>
      <dc:date>2012-08-24T16:58:34Z</dc:date>
    </item>
    <item>
      <title>Re: Why this hash code works for a single bank but not for 2 banks ?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Why-this-hash-code-works-for-a-single-bank-but-not-for-2-banks/m-p/102063#M28643</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Mirisage:&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;I speculate that your updated business logic boils down to two simple processing rules:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Only the first of consecutive NPNA banded transactions in an account are reportable.&lt;/LI&gt;&lt;LI&gt;Create a summary report for transactions &amp;gt;= 28feb2010&lt;/LI&gt;&lt;/UL&gt;&lt;PRE&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;* data must be sorted by bank_number, account_number and current_date;&lt;BR /&gt;data evaluated_transactions / view=evaluated_transactions;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; do _n_ = 1 by 1 until (last.account_number);&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; set mirisage.set_1;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; by bank_number account_number arrears_band notsorted;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if arrears_band = 'NPNA' then do;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if first.arrears_band then do;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if current_date &amp;lt; '28feb2010'd then balance = .;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; end;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; else&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; balance = .;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; end;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; output;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; end;&lt;BR /&gt;run;&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt; Use the same tabulate as shown in prior reply.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Aug 2012 19:25:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Why-this-hash-code-works-for-a-single-bank-but-not-for-2-banks/m-p/102063#M28643</guid>
      <dc:creator>RichardDeVen</dc:creator>
      <dc:date>2012-08-30T19:25:52Z</dc:date>
    </item>
    <item>
      <title>Re: Why this hash code works for a single bank but not for 2 banks ?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Why-this-hash-code-works-for-a-single-bank-but-not-for-2-banks/m-p/102064#M28644</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;H5 class="simple"&gt;Hi RichardADeVenezia,&lt;/H5&gt;&lt;P class="simple"&gt;Thank you very much for this great help.&lt;/P&gt;&lt;P class="simple"&gt;The code works marvelously!&lt;/P&gt;&lt;P class="simple"&gt;&lt;/P&gt;&lt;P class="simple"&gt;I am reading many lireature to grasp the expertise you have applied in this discussion series.&lt;/P&gt;&lt;P class="simple"&gt;&lt;/P&gt;&lt;P class="simple"&gt;Again thanks, for reading my long "posts", comprehending them, and then provising coding support.&lt;/P&gt;&lt;P class="simple"&gt;&lt;/P&gt;&lt;P class="simple"&gt;Warm regards&lt;/P&gt;&lt;P class="simple"&gt;&lt;/P&gt;&lt;P class="simple"&gt;Mirisage&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 02 Sep 2012 20:31:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Why-this-hash-code-works-for-a-single-bank-but-not-for-2-banks/m-p/102064#M28644</guid>
      <dc:creator>Mirisage</dc:creator>
      <dc:date>2012-09-02T20:31:55Z</dc:date>
    </item>
  </channel>
</rss>

