<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: How to get a macro to pass dynamic var values to multiple spread sheets/apps in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/How-to-get-a-macro-to-pass-dynamic-var-values-to-multiple-spread/m-p/213449#M39432</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is there a question buried in there somewhere?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 25 Jun 2015 03:35:00 GMT</pubDate>
    <dc:creator>Tom</dc:creator>
    <dc:date>2015-06-25T03:35:00Z</dc:date>
    <item>
      <title>How to get a macro to pass dynamic var values to multiple spread sheets/apps</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-get-a-macro-to-pass-dynamic-var-values-to-multiple-spread/m-p/213448#M39431</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;sput&amp;nbsp; &lt;SPAN style="background: white; color: black;"&gt;My SAS program produces an excel file for each of the college’s 7 academic departments. Each file contains a separate spread sheet for each academic major in that department with 95% of the requisite information. We currently manually edit in the remaining information for the college's 63 majors. &lt;/SPAN&gt;&lt;SPAN style="background: white; color: black;"&gt;&lt;SPAN&gt;The remaining information consists of three (3) values for each major (Grads,&lt;BR /&gt;Placed, PCT_Placed) and a list of graduates with multiple degrees that is included if graduates in that major have multiple degrees.&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; &lt;SPAN style="color: black; background: white;"&gt;I created macros using symput (&amp;amp;GR &amp;amp;PL &amp;amp;PCTPL) to pass the correct placement values for use in the titles, but the macros picked up the values for the last department’s major and passed/ applied these values to all majors.&lt;/SPAN&gt; &lt;SPAN style="color: black; background: white;"&gt;The layout for the main data set (&amp;amp;&lt;/SPAN&gt;&lt;SPAN style="color: teal; background: white;"&gt;pe.&lt;STRONG&gt;.H&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;SPAN style="background: white; color: black;"&gt;UNTED)is: &lt;SPAN style="background: yellow; color: black;"&gt;COLID, FName, LName, Home, Work_Day, Nite, Email, MD,DE, DR, NAICS, STATUS, DEPT, Major, &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black;"&gt;GRADS,&amp;nbsp; PLACED,&amp;nbsp; PCT_PLACED. &lt;SPAN&gt;The layout for the data set multi-degree (Students who graduated from more than one program) is &lt;SPAN style="background: yellow; color: black;"&gt;COLID, Maj1, Mal2, Maj3, Maj4, Maj5,Maj6, Maj7.). &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black;"&gt;&lt;SPAN&gt;There is ONE observation for each student (COLID) with multiple degrees. If a student does not have multiple degrees, there is no observation.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN style="color: black; background: white;"&gt;The following&amp;nbsp; contains the SAS code &lt;/SPAN&gt;&lt;SPAN style="color: black;"&gt;that produces the current reports and a copy of a mock output excel spread sheet for the AA department.&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: black; background: white;"&gt;&lt;SPAN&gt;The pe sas excerpt produces the excel&lt;BR /&gt;file for the AA department with the individual sheets for the two majors,AA and AS.&amp;nbsp; The actual program runs this same code for each of the eight (8) departments. Apologies. but every attempt to provide the prog and results via attachment failed.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;%include&lt;/SPAN&gt; &lt;SPAN style="background: white; color: purple; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;"C:\PROG&lt;BR /&gt;EVAL 2015\PE HEAD\SAS MACROS LIBS PE 2015.SAS"&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;;&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;STRONG style="mso-bidi-font-family: 'Comic Sans MS'; color: navy; font-size: 12pt; background: white; font-family: 'Comic Sans MS';"&gt;PROC&lt;/STRONG&gt; &lt;STRONG style="mso-bidi-font-family: 'Comic Sans MS'; color: navy; font-size: 12pt; background: white; font-family: 'Comic Sans MS';"&gt;SORT&lt;/STRONG&gt; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;DATA&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;=&amp;amp;&lt;/SPAN&gt;&lt;SPAN style="background: white; color: teal; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;pe.&lt;STRONG&gt;.H&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;UNTED; &lt;/SPAN&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;BY&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt; DEPT MAJOR COLID;&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;STRONG style="mso-bidi-font-family: 'Comic Sans MS'; color: navy; font-size: 12pt; background: white; font-family: 'Comic Sans MS';"&gt;DATA&lt;/STRONG&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt; AAA HS BUS ET IND IST PS NUR;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;SET&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt; HUNTED;&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;CALL&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt; SYMPUT (&lt;/SPAN&gt;&lt;SPAN style="background: white; color: purple; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;'GR'&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;,trim(left(put (GRADS,&lt;/SPAN&gt;&lt;STRONG style="mso-bidi-font-family: 'Comic Sans MS'; color: teal; font-size: 12pt; background: white; font-family: 'Comic Sans MS';"&gt;8.&lt;/STRONG&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;)))); &lt;/SPAN&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;CALL&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt; SYMPUT (&lt;/SPAN&gt;&lt;SPAN style="background: white; color: purple; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;'PL'&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;, trim(left(put(PLACED,&lt;/SPAN&gt;&lt;STRONG style="mso-bidi-font-family: 'Comic Sans MS'; color: teal; font-size: 12pt; background: white; font-family: 'Comic Sans MS';"&gt;8.&lt;/STRONG&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;))));&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt; &lt;/SPAN&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;CALL&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt; SYMPUT (&lt;/SPAN&gt;&lt;SPAN style="background: white; color: purple; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;'PCT'&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;,trim(left(put(PCT_PLACED,&lt;/SPAN&gt;&lt;STRONG style="mso-bidi-font-family: 'Comic Sans MS'; color: teal; font-size: 12pt; background: white; font-family: 'Comic Sans MS';"&gt;8.&lt;/STRONG&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;))));&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;IF&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt; DEPT=&lt;/SPAN&gt;&lt;SPAN style="background: white; color: purple; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;'AAA'&lt;/SPAN&gt; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;THEN&lt;/SPAN&gt; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;OUTPUT&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt; AA;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;IF&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt; DEPT=&lt;/SPAN&gt;&lt;SPAN style="background: white; color: purple; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;'HS'&lt;/SPAN&gt;&amp;nbsp; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;THEN&lt;/SPAN&gt; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;OUTPUT&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt; HS;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;IF&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt; DEPT=&lt;/SPAN&gt;&lt;SPAN style="background: white; color: purple; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;'BUS'&lt;/SPAN&gt;&amp;nbsp; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;THEN&lt;/SPAN&gt; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;OUTPUT&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt; BUS;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;IF&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt; DEPT=&lt;/SPAN&gt;&lt;SPAN style="background: white; color: purple; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;'PS'&lt;/SPAN&gt;&amp;nbsp; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;THEN&lt;/SPAN&gt; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;OUTPUT&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt; PS;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;IF&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt; DEPT=&lt;/SPAN&gt;&lt;SPAN style="background: white; color: purple; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;'ET'&lt;/SPAN&gt;&amp;nbsp; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;THEN&lt;/SPAN&gt; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;OUTPUT&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt; ET;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;IF&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt; DEPT=&lt;/SPAN&gt;&lt;SPAN style="background: white; color: purple; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;'IND'&lt;/SPAN&gt;&amp;nbsp; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;THEN&lt;/SPAN&gt; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;OUTPUT&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt; IND;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;IF&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt; DEPT=&lt;/SPAN&gt;&lt;SPAN style="background: white; color: purple; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;'IST'&lt;/SPAN&gt;&amp;nbsp; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;THEN&lt;/SPAN&gt; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;OUTPUT&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt; IST;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;IF&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt; DEPT=&lt;/SPAN&gt;&lt;SPAN style="background: white; color: purple; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;'NUR'&lt;/SPAN&gt;&amp;nbsp; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;THEN&lt;/SPAN&gt; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;OUTPUT&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt; NUR;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;RUN&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background: white; color: green; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;/**AA Dept**/&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;ods&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt; tagsets.ExcelXP&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;FILE&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;=&lt;/SPAN&gt;&lt;SPAN style="background: white; color: purple; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;"C:\PROGEVAL 2015\REPORTS\AAA 2013-14 Graduate Contacts testx.Xml"&lt;/SPAN&gt; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;style&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;=BARRETTSBLUE;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;ods&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt; tagsets.ExcelXP options (autofit_height= &lt;/SPAN&gt;&lt;SPAN style="background: white; color: purple; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;'yes'&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt; embedded_titles=&lt;/SPAN&gt;&lt;SPAN style="background: white; color: purple; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;'yes' e&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;mbedded_footnotes=&lt;/SPAN&gt;&lt;SPAN style="background: white; color: purple; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;'yes'&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt; &lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;TITLE_FOOTNOTE_WIDTH=&lt;/SPAN&gt;&lt;SPAN style="background: white; color: purple; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;'10' &lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;sheet_interval=&lt;/SPAN&gt;&lt;SPAN style="background: white; color: purple; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;'bygroup'&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt; sheet_label=&lt;/SPAN&gt;&lt;SPAN style="background: white; color: purple; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;' '&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;&amp;nbsp; frozen_headers= &lt;/SPAN&gt;&lt;SPAN style="background: white; color: purple; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;'3'&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt; absolute_column_width= &lt;/SPAN&gt;&lt;SPAN style="background: white; color: purple; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;'6,6,9,14,12,12,12,16,3,6,4,4,30'&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt; &lt;/SPAN&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;row_heights&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;=&lt;/SPAN&gt;&lt;SPAN style="background: white; color: purple; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;'0,10,0,0,0,0,0'&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt; &lt;BR /&gt;row_height_fudge=&lt;/SPAN&gt;&lt;SPAN style="background: white; color: purple; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;'3'&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt; );&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;title&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;; &lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;footnote&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;title1&lt;/SPAN&gt; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;font&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;=timesRoman bold &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;FONT&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;=&lt;/SPAN&gt;&lt;SPAN style="background: white; color: purple; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;'12PT'&lt;/SPAN&gt; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;h&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;=&lt;/SPAN&gt;&lt;STRONG style="mso-bidi-font-family: 'Comic Sans MS'; color: teal; font-size: 12pt; background: white; font-family: 'Comic Sans MS';"&gt;4&lt;/STRONG&gt; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;color&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;=blue &lt;/SPAN&gt;&lt;SPAN style="background: white; color: purple; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;"2013-14 &lt;BR /&gt;#BYVAL(MAJOR) Graduates Not Placed "&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;;&lt;/SPAN&gt;&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;title2&lt;/SPAN&gt; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;font&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;=timesRoman &lt;/SPAN&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;h&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;=&lt;/SPAN&gt;&lt;STRONG style="mso-bidi-font-family: 'Comic Sans MS'; color: teal; font-size: 12pt; background: white; font-family: 'Comic Sans MS';"&gt;4&lt;/STRONG&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;color&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;=blue &lt;/SPAN&gt;&lt;SPAN style="background: white; color: purple; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;" In&lt;BR /&gt;the Status Column, please use the following codes to indicate the&lt;BR /&gt;Graduates&amp;nbsp; status"&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;;&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;title3&lt;/SPAN&gt; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;font&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;=timesRoman &lt;/SPAN&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;h&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;=&lt;/SPAN&gt;&lt;STRONG style="mso-bidi-font-family: 'Comic Sans MS'; color: teal; font-size: 12pt; background: white; font-family: 'Comic Sans MS';"&gt;4&lt;/STRONG&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;color&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;=blue &lt;/SPAN&gt;&lt;SPAN style="background: white; color: purple; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;"FT=Work FT in Job Related to Degree, PT= Work PT in Job Related to Degree, S=Full-time Student Fall 2014&amp;nbsp; I= NotSeeking Work/Active Duty"&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;title4&lt;/SPAN&gt; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;font&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;=timesRoman &lt;/SPAN&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;h&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;=&lt;/SPAN&gt;&lt;STRONG style="mso-bidi-font-family: 'Comic Sans MS'; color: teal; font-size: 12pt; background: white; font-family: 'Comic Sans MS';"&gt;4&lt;/STRONG&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;color&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;=BLACK &lt;/SPAN&gt;&lt;SPAN style="background: white; color: purple; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;"Graduates: &amp;amp;GR&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Placed: &amp;amp;PL&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Percent Placed: &amp;amp;PCT"&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;footnote1&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;font&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;=timesRoman &lt;/SPAN&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;h&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;=&lt;/SPAN&gt;&lt;STRONG style="mso-bidi-font-family: 'Comic Sans MS'; color: teal; font-size: 12pt; background: white; font-family: 'Comic Sans MS';"&gt;3&lt;/STRONG&gt;&amp;nbsp; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;color&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;=blue&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="background: white; color: purple; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://www.census.gov/eos/www/naics/"&gt;http://www.census.gov/eos/www/naics/&lt;/A&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;footnote2&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;font&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;=timesRoman &lt;/SPAN&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;h&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;=&lt;/SPAN&gt;&lt;STRONG style="mso-bidi-font-family: 'Comic Sans MS'; color: teal; font-size: 12pt; background: white; font-family: 'Comic Sans MS';"&gt;3&lt;/STRONG&gt; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;J&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;=&lt;/SPAN&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;L&lt;/SPAN&gt; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;color&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;=blue&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="background: white; color: purple; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;"Note: A 'Y' in the MD column indicates&lt;BR /&gt;that the graduate has multiple degrees. If a graduate with multiple degrees is&lt;BR /&gt;'PLACED' for one one degree, "&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;footnote3&lt;/SPAN&gt; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;font&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;=timesRoman &lt;/SPAN&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;h&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;=&lt;/SPAN&gt;&lt;STRONG style="mso-bidi-font-family: 'Comic Sans MS'; color: teal; font-size: 12pt; background: white; font-family: 'Comic Sans MS';"&gt;3&lt;/STRONG&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;J&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;=&lt;/SPAN&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;L&lt;/SPAN&gt; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;color&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;=blue&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="background: white; color: purple; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;" s/he is considered placed for all degrees.&amp;nbsp; Multiple degree graduates for this program&lt;BR /&gt;and their other degrees are listed below:"&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;STRONG style="mso-bidi-font-family: 'Comic Sans MS'; color: navy; font-size: 12pt; background: white; font-family: 'Comic Sans MS';"&gt;PROC&lt;/STRONG&gt; &lt;STRONG style="mso-bidi-font-family: 'Comic Sans MS'; color: navy; font-size: 12pt; background: white; font-family: 'Comic Sans MS';"&gt;REPORT&lt;/STRONG&gt; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;DATA&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;=AAA &lt;/SPAN&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;NOWD&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;; &lt;/SPAN&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;BY&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;&amp;nbsp; major;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;COLUMNS&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt; MAJOR COLID&amp;nbsp; FNAME&lt;BR /&gt;LNAME Home Work_Day Nite Email MD STATUS DE DR NAICS&amp;nbsp; ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;DEFINE&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt; MAJOR/ORDER &lt;/SPAN&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;WIDTH&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;=&lt;/SPAN&gt;&lt;STRONG style="mso-bidi-font-family: 'Comic Sans MS'; color: teal; font-size: 12pt; background: white; font-family: 'Comic Sans MS';"&gt;5&lt;/STRONG&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;DEFINE&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt; COLID/ &lt;/SPAN&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;DISPLAY&lt;/SPAN&gt; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;WIDTH&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;=&lt;/SPAN&gt;&lt;STRONG style="mso-bidi-font-family: 'Comic Sans MS'; color: teal; font-size: 12pt; background: white; font-family: 'Comic Sans MS';"&gt;10&lt;/STRONG&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;DEFINE&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt; FNAME/&lt;/SPAN&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;DISPLAY&lt;/SPAN&gt; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;WIDTH&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;=&lt;/SPAN&gt;&lt;STRONG style="mso-bidi-font-family: 'Comic Sans MS'; color: teal; font-size: 12pt; background: white; font-family: 'Comic Sans MS';"&gt;20&lt;/STRONG&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;DEFINE&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt; LNAME/&lt;/SPAN&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;DISPLAY&lt;/SPAN&gt; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;WIDTH&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;=&lt;/SPAN&gt;&lt;STRONG style="mso-bidi-font-family: 'Comic Sans MS'; color: teal; font-size: 12pt; background: white; font-family: 'Comic Sans MS';"&gt;20&lt;/STRONG&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;DEFINE&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt; Home/&lt;/SPAN&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;DISPLAY&lt;/SPAN&gt; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;WIDTH&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;=&lt;/SPAN&gt;&lt;STRONG style="mso-bidi-font-family: 'Comic Sans MS'; color: teal; font-size: 12pt; background: white; font-family: 'Comic Sans MS';"&gt;12&lt;/STRONG&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;DEFINE&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt; Work_Day/&lt;/SPAN&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;DISPLAY&lt;/SPAN&gt; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;WIDTH&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;=&lt;/SPAN&gt;&lt;STRONG style="mso-bidi-font-family: 'Comic Sans MS'; color: teal; font-size: 12pt; background: white; font-family: 'Comic Sans MS';"&gt;12&lt;/STRONG&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;DEFINE&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt; Nite/&lt;/SPAN&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;DISPLAY&lt;/SPAN&gt; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;WIDTH&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;=&lt;/SPAN&gt;&lt;STRONG style="mso-bidi-font-family: 'Comic Sans MS'; color: teal; font-size: 12pt; background: white; font-family: 'Comic Sans MS';"&gt;12&lt;/STRONG&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;DEFINE&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt; EMAIL/&lt;/SPAN&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;DISPLAY&lt;/SPAN&gt; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;WIDTH&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;=&lt;/SPAN&gt;&lt;STRONG style="mso-bidi-font-family: 'Comic Sans MS'; color: teal; font-size: 12pt; background: white; font-family: 'Comic Sans MS';"&gt;45&lt;/STRONG&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;DEFINE&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt; MD/&lt;/SPAN&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;DISPLAY&lt;/SPAN&gt; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;WIDTH&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;=&lt;/SPAN&gt;&lt;STRONG style="mso-bidi-font-family: 'Comic Sans MS'; color: teal; font-size: 12pt; background: white; font-family: 'Comic Sans MS';"&gt;3&lt;/STRONG&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;DEFINE&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt; STATUS/&lt;/SPAN&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;DISPLAY&lt;/SPAN&gt; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;WIDTH&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;=&lt;/SPAN&gt;&lt;STRONG style="mso-bidi-font-family: 'Comic Sans MS'; color: teal; font-size: 12pt; background: white; font-family: 'Comic Sans MS';"&gt;6&lt;/STRONG&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;DEFINE&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt; DE/&lt;/SPAN&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;DISPLAY&lt;/SPAN&gt; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;WIDTH&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;=&lt;/SPAN&gt;&lt;STRONG style="mso-bidi-font-family: 'Comic Sans MS'; color: teal; font-size: 12pt; background: white; font-family: 'Comic Sans MS';"&gt;7&lt;/STRONG&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;DEFINE&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt; DR/&lt;/SPAN&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;DISPLAY&lt;/SPAN&gt; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;WIDTH&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;=&lt;/SPAN&gt;&lt;STRONG style="mso-bidi-font-family: 'Comic Sans MS'; color: teal; font-size: 12pt; background: white; font-family: 'Comic Sans MS';"&gt;7&lt;/STRONG&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;DEFINE&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt; NAICS/ &lt;/SPAN&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;DISPLAY&lt;/SPAN&gt; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;WIDTH&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;=&lt;/SPAN&gt;&lt;STRONG style="mso-bidi-font-family: 'Comic Sans MS'; color: teal; font-size: 12pt; background: white; font-family: 'Comic Sans MS';"&gt;55&lt;/STRONG&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;BREAK&lt;/SPAN&gt; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;AFTER&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt; MAJOR / &lt;/SPAN&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;PAGE&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;;&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;STRONG style="mso-bidi-font-family: 'Comic Sans MS'; color: navy; font-size: 12pt; background: white; font-family: 'Comic Sans MS';"&gt;RUN&lt;/STRONG&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;; &lt;/SPAN&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;ODS&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt; tagsets.ExcelXP &lt;/SPAN&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;close&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background: white; color: green; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;/**end**/&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;CALL&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt; SYMPUT (&lt;/SPAN&gt;&lt;SPAN style="background: white; color: purple; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;'GR'&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;, trim(left(put (GRADS,&lt;/SPAN&gt;&lt;STRONG style="mso-bidi-font-family: 'Comic Sans MS'; color: teal; font-size: 12pt; background: white; font-family: 'Comic Sans MS';"&gt;8.&lt;/STRONG&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;))));&amp;nbsp; &lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;CALL&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt; SYMPUT (&lt;/SPAN&gt;&lt;SPAN style="background: white; color: purple; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;'PL'&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;, trim(left(put(PLACED,&lt;/SPAN&gt;&lt;STRONG style="mso-bidi-font-family: 'Comic Sans MS'; color: teal; font-size: 12pt; background: white; font-family: 'Comic Sans MS';"&gt;8.&lt;/STRONG&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;))));&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;CALL&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt; SYMPUT (&lt;/SPAN&gt;&lt;SPAN style="background: white; color: purple; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;'PCT'&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;, trim(left(put(PCT_PLACED,&lt;/SPAN&gt;&lt;STRONG style="mso-bidi-font-family: 'Comic Sans MS'; color: teal; font-size: 12pt; background: white; font-family: 'Comic Sans MS';"&gt;8.&lt;/STRONG&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;))));&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" style="padding: 0px 5.4pt; table-layout: fixed;" width="1188"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD colspan="13" style="background: white; padding: 0px 5.4pt;" valign="bottom" width="1188"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P align="center" style="text-align: center;"&gt;&lt;STRONG style="color: blue; font-size: 12pt; font-family: 'Times New Roman',serif; mso-fareast-font-family: 'Times New Roman';"&gt;2013-14&amp;nbsp;&amp;nbsp; AA Graduates Not&lt;BR /&gt;&amp;nbsp; Placed&lt;/STRONG&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt; &lt;/TR&gt; &lt;TR&gt;&lt;TD colspan="13" style="background: white; padding: 0px 5.4pt;" valign="bottom" width="1188"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P align="center" style="text-align: center;"&gt;&lt;SPAN style="color: blue; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt;In the Status Column, please use the following codes to indicate&lt;BR /&gt;&amp;nbsp; the Graduate's&amp;nbsp; status&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt; &lt;/TR&gt; &lt;TR&gt;&lt;TD colspan="13" style="background: white; padding: 0px 5.4pt;" valign="bottom" width="1188"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P align="center" style="text-align: center;"&gt;&lt;SPAN style="color: blue; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt;FT= Work FT in Job Related to Degree, PT= Work PT in Job Related&lt;BR /&gt;&amp;nbsp; to Degree, S =Full-time Student Fall 2014 &lt;BR /&gt;&amp;nbsp; I= Not Seeking Work/Active Duty&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt; &lt;/TR&gt; &lt;TR&gt;&lt;TD colspan="13" style="background: white; padding: 0px 5.4pt;" valign="bottom" width="1188"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P align="center" style="text-align: center;"&gt;&lt;SPAN style="color: black; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt;Graduates: 222&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&amp;nbsp; Placed: 178&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Percent&lt;BR /&gt;&amp;nbsp; Placed: 80.0%&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt; &lt;/TR&gt; &lt;TR&gt;&lt;TD nowrap="nowrap" style="background: white; padding: 0px 5.4pt;" valign="bottom" width="68"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P&gt;&lt;STRONG style="font-size: 12pt; font-family: 'Times New Roman',serif; mso-fareast-font-family: 'Times New Roman';"&gt; &lt;/STRONG&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt; &lt;/TR&gt; &lt;TR&gt;&lt;TD style="background: #639ace; padding: 0px 5.4pt; border: 1pt solid white;" valign="bottom" width="68"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P align="center" style="text-align: center;"&gt;&lt;STRONG style="color: black; font-size: 12pt; font-family: 'Times New Roman',serif; mso-fareast-font-family: 'Times New Roman';"&gt;MAJOR&lt;/STRONG&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD style="background: #639ace; border-width: 1pt 1pt 1pt medium; border-style: solid solid solid none; border-color: white white white currentColor; padding: 0px 5.4pt;" valign="bottom" width="80"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P align="center" style="text-align: center;"&gt;&lt;STRONG style="color: black; font-size: 12pt; font-family: 'Times New Roman',serif; mso-fareast-font-family: 'Times New Roman';"&gt;COLID&lt;/STRONG&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD style="background: #639ace; border-width: 1pt 1pt 1pt medium; border-style: solid solid solid none; border-color: white white white currentColor; padding: 0px 5.4pt;" valign="bottom" width="77"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P align="center" style="text-align: center;"&gt;&lt;STRONG style="color: black; font-size: 12pt; font-family: 'Times New Roman',serif; mso-fareast-font-family: 'Times New Roman';"&gt;FNAME&lt;/STRONG&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD style="background: #639ace; border-width: 1pt 1pt 1pt medium; border-style: solid solid solid none; border-color: white white white currentColor; padding: 0px 5.4pt;" valign="bottom" width="78"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P align="center" style="text-align: center;"&gt;&lt;STRONG style="color: black; font-size: 12pt; font-family: 'Times New Roman',serif; mso-fareast-font-family: 'Times New Roman';"&gt;LNAME&lt;/STRONG&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD style="background: #639ace; border-width: 1pt 1pt 1pt medium; border-style: solid solid solid none; border-color: white white white currentColor; padding: 0px 5.4pt;" valign="bottom" width="69"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P align="center" style="text-align: center;"&gt;&lt;STRONG style="color: black; font-size: 12pt; font-family: 'Times New Roman',serif; mso-fareast-font-family: 'Times New Roman';"&gt;HOME&lt;/STRONG&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD style="background: #639ace; border-width: 1pt 1pt 1pt medium; border-style: solid solid solid none; border-color: white white white currentColor; padding: 0px 5.4pt;" valign="bottom" width="113"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P align="center" style="text-align: center;"&gt;&lt;STRONG style="color: black; font-size: 12pt; font-family: 'Times New Roman',serif; mso-fareast-font-family: 'Times New Roman';"&gt;WORK_DAY&lt;/STRONG&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD style="background: #639ace; border-width: 1pt 1pt 1pt medium; border-style: solid solid solid none; border-color: white white white currentColor; padding: 0px 5.4pt;" valign="bottom" width="57"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P align="center" style="text-align: center;"&gt;&lt;STRONG style="color: black; font-size: 12pt; font-family: 'Times New Roman',serif; mso-fareast-font-family: 'Times New Roman';"&gt;NITE&lt;/STRONG&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD style="background: #639ace; border-width: 1pt 1pt 1pt medium; border-style: solid solid solid none; border-color: white white white currentColor; padding: 0px 5.4pt;" valign="bottom" width="170"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P align="center" style="text-align: center;"&gt;&lt;STRONG style="color: black; font-size: 12pt; font-family: 'Times New Roman',serif; mso-fareast-font-family: 'Times New Roman';"&gt;EMAIL&lt;/STRONG&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD style="background: #639ace; border-width: 1pt 1pt 1pt medium; border-style: solid solid solid none; border-color: white white white currentColor; padding: 0px 5.4pt;" valign="bottom" width="39"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P align="center" style="text-align: center;"&gt;&lt;STRONG style="color: black; font-size: 12pt; font-family: 'Times New Roman',serif; mso-fareast-font-family: 'Times New Roman';"&gt;MD&lt;/STRONG&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD style="background: #639ace; border-width: 1pt 1pt 1pt medium; border-style: solid solid solid none; border-color: white white white currentColor; padding: 0px 5.4pt;" valign="bottom" width="98"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P align="center" style="text-align: center;"&gt;&lt;STRONG style="color: black; font-size: 12pt; font-family: 'Times New Roman',serif; mso-fareast-font-family: 'Times New Roman';"&gt;STATUS&lt;/STRONG&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD style="background: #639ace; border-width: 1pt 1pt 1pt medium; border-style: solid solid solid none; border-color: white white white currentColor; padding: 0px 5.4pt;" valign="bottom" width="45"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P align="center" style="text-align: center;"&gt;&lt;STRONG style="color: black; font-size: 12pt; font-family: 'Times New Roman',serif; mso-fareast-font-family: 'Times New Roman';"&gt;DE&lt;/STRONG&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD style="background: #639ace; border-width: 1pt 1pt 1pt medium; border-style: solid solid solid none; border-color: white white white currentColor; padding: 0px 5.4pt;" valign="bottom" width="26"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P align="center" style="text-align: center;"&gt;&lt;STRONG style="color: black; font-size: 12pt; font-family: 'Times New Roman',serif; mso-fareast-font-family: 'Times New Roman';"&gt;DR&lt;/STRONG&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD style="background: #639ace; border-width: 1pt 1pt 1pt medium; border-style: solid solid solid none; border-color: white white white currentColor; padding: 0px 5.4pt;" valign="bottom" width="270"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P align="center" style="text-align: center;"&gt;&lt;STRONG style="color: black; font-size: 12pt; font-family: 'Times New Roman',serif; mso-fareast-font-family: 'Times New Roman';"&gt;naics&lt;/STRONG&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt; &lt;/TR&gt; &lt;TR&gt;&lt;TD style="background: #e7e3e7; border-width: medium 1pt 1pt; border-style: none solid solid; border-color: currentColor white white; padding: 0px 5.4pt;" valign="bottom" width="68"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P&gt;&lt;SPAN style="color: black; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt;AA&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD style="background: #e7e3e7; border-width: medium 1pt 1pt medium; border-style: none solid solid none; border-color: currentColor white white currentColor; padding: 0px 5.4pt;" valign="bottom" width="80"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="color: black; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt;99999&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD style="background: #e7e3e7; border-width: medium 1pt 1pt medium; border-style: none solid solid none; border-color: currentColor white white currentColor; padding: 0px 5.4pt;" valign="bottom" width="77"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P&gt;&lt;SPAN style="color: black; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt;Donald&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD style="background: #e7e3e7; border-width: medium 1pt 1pt medium; border-style: none solid solid none; border-color: currentColor white white currentColor; padding: 0px 5.4pt;" valign="bottom" width="78"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P&gt;&lt;SPAN style="color: black; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt;Roeser&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD style="background: #e7e3e7; border-width: medium 1pt 1pt medium; border-style: none solid solid none; border-color: currentColor white white currentColor; padding: 0px 5.4pt;" valign="bottom" width="69"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P&gt;&lt;SPAN style="color: black; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt;9999&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD style="background: #e7e3e7; border-width: medium 1pt 1pt medium; border-style: none solid solid none; border-color: currentColor white white currentColor; padding: 0px 5.4pt;" valign="bottom" width="113"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P align="center" style="text-align: center;"&gt;&lt;SPAN style="color: black; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD style="background: #e7e3e7; border-width: medium 1pt 1pt medium; border-style: none solid solid none; border-color: currentColor white white currentColor; padding: 0px 5.4pt;" valign="bottom" width="57"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P align="center" style="text-align: center;"&gt;&lt;SPAN style="color: black; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt;777-&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding: 0px 5.4pt;" valign="bottom" width="170"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P&gt;&lt;SPAN style="color: black; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt;&lt;A class="jive-link-email-small" href="mailto:BOC@aol.com"&gt;BOC@aol.com&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD style="background: #e7e3e7; border-width: medium 1pt 1pt; border-style: none solid solid; border-color: currentColor white white; padding: 0px 5.4pt;" valign="bottom" width="39"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P align="center" style="text-align: center;"&gt;&lt;SPAN style="color: black; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt;Y&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD style="background: #e7e3e7; border-width: medium 1pt 1pt medium; border-style: none solid solid none; border-color: currentColor white white currentColor; padding: 0px 5.4pt;" valign="bottom" width="98"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P align="center" style="text-align: center;"&gt;&lt;SPAN style="color: black; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD style="background: #e7e3e7; border-width: medium 1pt 1pt medium; border-style: none solid solid none; border-color: currentColor white white currentColor; padding: 0px 5.4pt;" valign="bottom" width="45"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P&gt;&lt;SPAN style="color: black; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt;PT&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD style="background: #e7e3e7; border-width: medium 1pt 1pt medium; border-style: none solid solid none; border-color: currentColor white white currentColor; padding: 0px 5.4pt;" valign="bottom" width="26"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P&gt;&lt;SPAN style="color: black; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt;Y&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD style="background: #e7e3e7; border-width: medium 1pt 1pt medium; border-style: none solid solid none; border-color: currentColor white white currentColor; padding: 0px 5.4pt;" valign="bottom" width="270"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P&gt;&lt;SPAN style="color: black; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt;812210 Funeral Homes &lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt; &lt;/TR&gt; &lt;TR&gt;&lt;TD style="background: #e7e3e7; border-width: medium 1pt 1pt; border-style: none solid solid; border-color: currentColor white white; padding: 0px 5.4pt;" valign="bottom" width="68"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P align="center" style="text-align: center;"&gt;&lt;SPAN style="color: black; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD style="background: #e7e3e7; border-width: medium 1pt 1pt medium; border-style: none solid solid none; border-color: currentColor white white currentColor; padding: 0px 5.4pt;" valign="bottom" width="80"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="color: black; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt;111111&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD style="background: #e7e3e7; border-width: medium 1pt 1pt medium; border-style: none solid solid none; border-color: currentColor white white currentColor; padding: 0px 5.4pt;" valign="bottom" width="77"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P&gt;&lt;SPAN style="color: black; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt;Morris&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD style="background: #e7e3e7; border-width: medium 1pt 1pt medium; border-style: none solid solid none; border-color: currentColor white white currentColor; padding: 0px 5.4pt;" valign="bottom" width="78"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P&gt;&lt;SPAN style="color: black; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt;Day&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD style="background: #e7e3e7; border-width: medium 1pt 1pt medium; border-style: none solid solid none; border-color: currentColor white white currentColor; padding: 0px 5.4pt;" valign="bottom" width="69"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P&gt;&lt;SPAN style="color: black; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD style="background: #e7e3e7; border-width: medium 1pt 1pt medium; border-style: none solid solid none; border-color: currentColor white white currentColor; padding: 0px 5.4pt;" valign="bottom" width="113"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P&gt;&lt;SPAN style="color: black; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt;888&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD style="background: #e7e3e7; border-width: medium 1pt 1pt medium; border-style: none solid solid none; border-color: currentColor white white currentColor; padding: 0px 5.4pt;" valign="bottom" width="57"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P align="center" style="text-align: center;"&gt;&lt;SPAN style="color: black; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding: 0px 5.4pt;" valign="bottom" width="170"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P&gt;&lt;SPAN style="color: black; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt;Dinowlk@hotmail.&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD style="background: #e7e3e7; border-width: medium 1pt 1pt; border-style: none solid solid; border-color: currentColor white white; padding: 0px 5.4pt;" valign="bottom" width="39"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P align="center" style="text-align: center;"&gt;&lt;SPAN style="color: black; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD style="background: #e7e3e7; border-width: medium 1pt 1pt medium; border-style: none solid solid none; border-color: currentColor white white currentColor; padding: 0px 5.4pt;" valign="bottom" width="98"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P align="center" style="text-align: center;"&gt;&lt;SPAN style="color: black; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD style="background: #e7e3e7; border-width: medium 1pt 1pt medium; border-style: none solid solid none; border-color: currentColor white white currentColor; padding: 0px 5.4pt;" valign="bottom" width="45"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P align="center" style="text-align: center;"&gt;&lt;SPAN style="color: black; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD style="background: #e7e3e7; border-width: medium 1pt 1pt medium; border-style: none solid solid none; border-color: currentColor white white currentColor; padding: 0px 5.4pt;" valign="bottom" width="26"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P align="center" style="text-align: center;"&gt;&lt;SPAN style="color: black; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD style="background: #e7e3e7; border-width: medium 1pt 1pt medium; border-style: none solid solid none; border-color: currentColor white white currentColor; padding: 0px 5.4pt;" valign="bottom" width="270"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P&gt;&lt;SPAN style="color: black; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt;713940 /Watch_Clock&lt;BR /&gt;&amp;nbsp; mfg&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt; &lt;/TR&gt; &lt;TR&gt;&lt;TD style="background: #e7e3e7; border-width: medium 1pt 1pt; border-style: none solid solid; border-color: currentColor white white; padding: 0px 5.4pt;" valign="bottom" width="68"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P align="center" style="text-align: center;"&gt;&lt;SPAN style="color: black; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD style="background: #e7e3e7; border-width: medium 1pt 1pt medium; border-style: none solid solid none; border-color: currentColor white white currentColor; padding: 0px 5.4pt;" valign="bottom" width="80"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="color: black; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt;2222&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD style="background: #e7e3e7; border-width: medium 1pt 1pt medium; border-style: none solid solid none; border-color: currentColor white white currentColor; padding: 0px 5.4pt;" valign="bottom" width="77"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P&gt;&lt;SPAN style="color: black; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt;Jani&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD style="background: #e7e3e7; border-width: medium 1pt 1pt medium; border-style: none solid solid none; border-color: currentColor white white currentColor; padding: 0px 5.4pt;" valign="bottom" width="78"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P&gt;&lt;SPAN style="color: black; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt;Lane&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD style="background: #e7e3e7; border-width: medium 1pt 1pt medium; border-style: none solid solid none; border-color: currentColor white white currentColor; padding: 0px 5.4pt;" valign="bottom" width="69"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P&gt;&lt;SPAN style="color: black; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt;999-&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD style="background: #e7e3e7; border-width: medium 1pt 1pt medium; border-style: none solid solid none; border-color: currentColor white white currentColor; padding: 0px 5.4pt;" valign="bottom" width="113"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P align="center" style="text-align: center;"&gt;&lt;SPAN style="color: black; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD style="background: #e7e3e7; border-width: medium 1pt 1pt medium; border-style: none solid solid none; border-color: currentColor white white currentColor; padding: 0px 5.4pt;" valign="bottom" width="57"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P align="center" style="text-align: center;"&gt;&lt;SPAN style="color: black; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding: 0px 5.4pt;" valign="bottom" width="170"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P&gt;&lt;SPAN style="color: black; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt;cherries@yahoo.c&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD style="background: #e7e3e7; border-width: medium 1pt 1pt; border-style: none solid solid; border-color: currentColor white white; padding: 0px 5.4pt;" valign="bottom" width="39"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P&gt;&lt;SPAN style="color: black; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt;Y&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD style="background: #e7e3e7; border-width: medium 1pt 1pt medium; border-style: none solid solid none; border-color: currentColor white white currentColor; padding: 0px 5.4pt;" valign="bottom" width="98"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P align="center" style="text-align: center;"&gt;&lt;SPAN style="color: black; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD style="background: #e7e3e7; border-width: medium 1pt 1pt medium; border-style: none solid solid none; border-color: currentColor white white currentColor; padding: 0px 5.4pt;" valign="bottom" width="45"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P align="center" style="text-align: center;"&gt;&lt;SPAN style="color: black; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD style="background: #e7e3e7; border-width: medium 1pt 1pt medium; border-style: none solid solid none; border-color: currentColor white white currentColor; padding: 0px 5.4pt;" valign="bottom" width="26"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P align="center" style="text-align: center;"&gt;&lt;SPAN style="color: black; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD style="background: #e7e3e7; border-width: medium 1pt 1pt medium; border-style: none solid solid none; border-color: currentColor white white currentColor; padding: 0px 5.4pt;" valign="bottom" width="270"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P&gt;&lt;SPAN style="color: black; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt;311811/bakeries&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt; &lt;/TR&gt; &lt;TR&gt;&lt;TD style="background: #e7e3e7; border-width: medium 1pt 1pt; border-style: none solid solid; border-color: currentColor white white; padding: 0px 5.4pt;" valign="bottom" width="68"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P align="center" style="text-align: center;"&gt;&lt;SPAN style="color: black; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD style="background: #e7e3e7; border-width: medium 1pt 1pt medium; border-style: none solid solid none; border-color: currentColor white white currentColor; padding: 0px 5.4pt;" valign="bottom" width="80"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="color: black; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt;555555&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD style="background: #e7e3e7; border-width: medium 1pt 1pt medium; border-style: none solid solid none; border-color: currentColor white white currentColor; padding: 0px 5.4pt;" valign="bottom" width="77"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P&gt;&lt;SPAN style="color: black; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt;Davis&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD style="background: #e7e3e7; border-width: medium 1pt 1pt medium; border-style: none solid solid none; border-color: currentColor white white currentColor; padding: 0px 5.4pt;" valign="bottom" width="78"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P&gt;&lt;SPAN style="color: black; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt;Byron&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD style="background: #e7e3e7; border-width: medium 1pt 1pt medium; border-style: none solid solid none; border-color: currentColor white white currentColor; padding: 0px 5.4pt;" valign="bottom" width="69"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P&gt;&lt;SPAN style="color: black; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt;999&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD style="background: #e7e3e7; border-width: medium 1pt 1pt medium; border-style: none solid solid none; border-color: currentColor white white currentColor; padding: 0px 5.4pt;" valign="bottom" width="113"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P&gt;&lt;SPAN style="color: black; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt;888&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD style="background: #e7e3e7; border-width: medium 1pt 1pt medium; border-style: none solid solid none; border-color: currentColor white white currentColor; padding: 0px 5.4pt;" valign="bottom" width="57"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P align="center" style="text-align: center;"&gt;&lt;SPAN style="color: black; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding: 0px 5.4pt;" valign="bottom" width="170"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P&gt;&lt;SPAN style="color: black; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt;&lt;A class="jive-link-email-small" href="mailto:stealer@yahoo.co"&gt;stealer@yahoo.co&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD style="background: #e7e3e7; border-width: medium 1pt 1pt; border-style: none solid solid; border-color: currentColor white white; padding: 0px 5.4pt;" valign="bottom" width="39"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P align="center" style="text-align: center;"&gt;&lt;SPAN style="color: black; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD style="background: #e7e3e7; border-width: medium 1pt 1pt medium; border-style: none solid solid none; border-color: currentColor white white currentColor; padding: 0px 5.4pt;" valign="bottom" width="98"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P align="center" style="text-align: center;"&gt;&lt;SPAN style="color: black; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD style="background: #e7e3e7; border-width: medium 1pt 1pt medium; border-style: none solid solid none; border-color: currentColor white white currentColor; padding: 0px 5.4pt;" valign="bottom" width="45"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P&gt;&lt;SPAN style="color: black; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt;PT&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD style="background: #e7e3e7; border-width: medium 1pt 1pt medium; border-style: none solid solid none; border-color: currentColor white white currentColor; padding: 0px 5.4pt;" valign="bottom" width="26"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P&gt;&lt;SPAN style="color: black; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt;Y&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD style="background: #e7e3e7; border-width: medium 1pt 1pt medium; border-style: none solid solid none; border-color: currentColor white white currentColor; padding: 0px 5.4pt;" valign="bottom" width="270"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P&gt;&lt;SPAN style="color: black; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt;0211 /Cattle Ranching&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt; &lt;/TR&gt; &lt;TR&gt;&lt;TD style="background: #e7e3e7; border-width: medium 1pt 1pt; border-style: none solid solid; border-color: currentColor white white; padding: 0px 5.4pt;" valign="bottom" width="68"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P align="center" style="text-align: center;"&gt;&lt;SPAN style="color: black; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD style="background: #e7e3e7; border-width: medium 1pt 1pt medium; border-style: none solid solid none; border-color: currentColor white white currentColor; padding: 0px 5.4pt;" valign="bottom" width="80"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="color: black; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt;3333&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD style="background: #e7e3e7; border-width: medium 1pt 1pt medium; border-style: none solid solid none; border-color: currentColor white white currentColor; padding: 0px 5.4pt;" valign="bottom" width="77"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P&gt;&lt;SPAN style="color: black; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt;Buffett&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD style="background: #e7e3e7; border-width: medium 1pt 1pt medium; border-style: none solid solid none; border-color: currentColor white white currentColor; padding: 0px 5.4pt;" valign="bottom" width="78"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P&gt;&lt;SPAN style="color: black; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt;James&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD style="background: #e7e3e7; border-width: medium 1pt 1pt medium; border-style: none solid solid none; border-color: currentColor white white currentColor; padding: 0px 5.4pt;" valign="bottom" width="69"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P&gt;&lt;SPAN style="color: black; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt;999-&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD style="background: #e7e3e7; border-width: medium 1pt 1pt medium; border-style: none solid solid none; border-color: currentColor white white currentColor; padding: 0px 5.4pt;" valign="bottom" width="113"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P align="center" style="text-align: center;"&gt;&lt;SPAN style="color: black; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD style="background: #e7e3e7; border-width: medium 1pt 1pt medium; border-style: none solid solid none; border-color: currentColor white white currentColor; padding: 0px 5.4pt;" valign="bottom" width="57"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P align="center" style="text-align: center;"&gt;&lt;SPAN style="color: black; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD nowrap="nowrap" style="padding: 0px 5.4pt;" valign="bottom" width="170"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P&gt;&lt;SPAN style="color: black; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt;magrita@yahoo.c&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD style="background: #e7e3e7; border-width: medium 1pt 1pt; border-style: none solid solid; border-color: currentColor white white; padding: 0px 5.4pt;" valign="bottom" width="39"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P align="center" style="text-align: center;"&gt;&lt;SPAN style="color: black; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD style="background: #e7e3e7; border-width: medium 1pt 1pt medium; border-style: none solid solid none; border-color: currentColor white white currentColor; padding: 0px 5.4pt;" valign="bottom" width="98"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P align="center" style="text-align: center;"&gt;&lt;SPAN style="color: black; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD style="background: #e7e3e7; border-width: medium 1pt 1pt medium; border-style: none solid solid none; border-color: currentColor white white currentColor; padding: 0px 5.4pt;" valign="bottom" width="45"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P align="center" style="text-align: center;"&gt;&lt;SPAN style="color: black; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD style="background: #e7e3e7; border-width: medium 1pt 1pt medium; border-style: none solid solid none; border-color: currentColor white white currentColor; padding: 0px 5.4pt;" valign="bottom" width="26"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P align="center" style="text-align: center;"&gt;&lt;SPAN style="color: black; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD style="background: #e7e3e7; border-width: medium 1pt 1pt medium; border-style: none solid solid none; border-color: currentColor white white currentColor; padding: 0px 5.4pt;" valign="bottom" width="270"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P&gt;&lt;SPAN style="color: black; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt;336612/Boat building&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt; &lt;/TR&gt; &lt;TR&gt;&lt;TD nowrap="nowrap" style="background: white; padding: 0px 5.4pt;" valign="bottom" width="68"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P&gt;&lt;STRONG style="font-size: 12pt; font-family: 'Times New Roman',serif; mso-fareast-font-family: 'Times New Roman';"&gt; &lt;/STRONG&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt; &lt;/TR&gt; &lt;TR&gt;&lt;TD colspan="10" style="background: white; padding: 0px 5.4pt;" valign="bottom" width="848"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P align="center" style="text-align: center;"&gt;&lt;SPAN style="color: blue; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt;&lt;A class="jive-link-external-small" href="http://www.census.gov/eos/www/naics/"&gt;http://www.census.gov/eos/www/naics/&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt; &lt;/TR&gt; &lt;TR&gt;&lt;TD colspan="12" nowrap="nowrap" style="background: white; padding: 0px 5.4pt;" valign="bottom" width="918"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P&gt;&lt;SPAN style="color: blue; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt;Note: A 'Y' in the MD&lt;BR /&gt;&amp;nbsp; column indicates that the graduate has multiple degrees. If a graduate with&lt;BR /&gt;&amp;nbsp; multiple egrees is 'PLACED' for one one degree,&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD nowrap="nowrap" style="background: white; padding: 0px 5.4pt;" valign="bottom" width="270"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P&gt;&lt;SPAN style="color: blue; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt; &lt;/TR&gt; &lt;TR&gt;&lt;TD colspan="10" nowrap="nowrap" style="background: white; padding: 0px 5.4pt;" valign="bottom" width="848"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P&gt;&lt;SPAN style="color: blue; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt;s/he is considered&lt;BR /&gt;&amp;nbsp; placed for all degrees.&amp;nbsp; Multiple&lt;BR /&gt;&amp;nbsp; degree graduates for this program and their other degrees are listed below:&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD nowrap="nowrap" style="background: white; padding: 0px 5.4pt;" valign="bottom" width="45"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P&gt;&lt;SPAN style="color: blue; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD nowrap="nowrap" style="background: white; padding: 0px 5.4pt;" valign="bottom" width="26"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P&gt;&lt;SPAN style="color: blue; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD nowrap="nowrap" style="background: white; padding: 0px 5.4pt;" valign="bottom" width="270"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P&gt;&lt;SPAN style="color: blue; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt; &lt;/TR&gt; &lt;TR&gt;&lt;TD nowrap="nowrap" style="background: white; padding: 0px 5.4pt;" valign="bottom" width="68"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P&gt;&lt;SPAN style="color: blue; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD nowrap="nowrap" style="background: white; padding: 0px 5.4pt;" valign="bottom" width="80"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P&gt;&lt;SPAN style="color: blue; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD nowrap="nowrap" style="background: white; padding: 0px 5.4pt;" valign="bottom" width="77"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P&gt;&lt;SPAN style="color: blue; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD nowrap="nowrap" style="background: white; padding: 0px 5.4pt;" valign="bottom" width="78"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P&gt;&lt;SPAN style="color: blue; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD nowrap="nowrap" style="background: white; padding: 0px 5.4pt;" valign="bottom" width="69"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P&gt;&lt;SPAN style="color: blue; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD nowrap="nowrap" style="background: white; padding: 0px 5.4pt;" valign="bottom" width="113"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P&gt;&lt;SPAN style="color: blue; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD nowrap="nowrap" style="background: white; padding: 0px 5.4pt;" valign="bottom" width="57"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P&gt;&lt;SPAN style="color: blue; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD nowrap="nowrap" style="background: white; padding: 0px 5.4pt;" valign="bottom" width="170"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P&gt;&lt;SPAN style="color: blue; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD nowrap="nowrap" style="background: white; padding: 0px 5.4pt;" valign="bottom" width="39"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P&gt;&lt;SPAN style="color: blue; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD nowrap="nowrap" style="background: white; padding: 0px 5.4pt;" valign="bottom" width="98"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P&gt;&lt;SPAN style="color: blue; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD nowrap="nowrap" style="background: white; padding: 0px 5.4pt;" valign="bottom" width="45"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P&gt;&lt;SPAN style="color: blue; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD nowrap="nowrap" style="background: white; padding: 0px 5.4pt;" valign="bottom" width="26"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P&gt;&lt;SPAN style="color: blue; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD nowrap="nowrap" style="background: white; padding: 0px 5.4pt;" valign="bottom" width="270"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P&gt;&lt;SPAN style="color: blue; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt; &lt;/TR&gt; &lt;TR&gt;&lt;TD nowrap="nowrap" style="background: white; padding: 0px 5.4pt;" valign="bottom" width="68"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P&gt;&lt;STRONG style="font-size: 12pt; font-family: 'Times New Roman',serif; mso-fareast-font-family: 'Times New Roman';"&gt; &lt;/STRONG&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD nowrap="nowrap" style="background: white; padding: 0px 5.4pt; border: 1pt solid windowtext;" valign="bottom" width="80"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P align="center" style="text-align: center;"&gt;&lt;SPAN style="color: black; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt;COLID&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD nowrap="nowrap" style="background: white; border-width: 1pt 1pt 1pt medium; border-style: solid solid solid none; border-color: windowtext windowtext windowtext currentColor; padding: 0px 5.4pt;" valign="bottom" width="77"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P align="center" style="text-align: center;"&gt;&lt;SPAN style="color: black; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt;Major&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD nowrap="nowrap" style="background: white; border-width: 1pt 1pt 1pt medium; border-style: solid solid solid none; border-color: windowtext windowtext windowtext currentColor; padding: 0px 5.4pt;" valign="bottom" width="78"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P align="center" style="text-align: center;"&gt;&lt;SPAN style="color: black; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt;Major&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD nowrap="nowrap" style="background: white; border-width: 1pt 1pt 1pt medium; border-style: solid solid solid none; border-color: windowtext windowtext windowtext currentColor; padding: 0px 5.4pt;" valign="bottom" width="69"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P align="center" style="text-align: center;"&gt;&lt;SPAN style="color: black; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt;Major&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD nowrap="nowrap" style="background: white; padding: 0px 5.4pt;" valign="bottom" width="113"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P&gt;&lt;SPAN style="color: black; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD nowrap="nowrap" style="background: white; padding: 0px 5.4pt;" valign="bottom" width="57"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P&gt;&lt;SPAN style="color: black; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD nowrap="nowrap" style="background: white; padding: 0px 5.4pt;" valign="bottom" width="170"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P&gt;&lt;SPAN style="color: black; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD nowrap="nowrap" style="background: white; padding: 0px 5.4pt;" valign="bottom" width="39"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P&gt;&lt;SPAN style="color: black; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD nowrap="nowrap" style="background: white; padding: 0px 5.4pt;" valign="bottom" width="98"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P&gt;&lt;SPAN style="color: black; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD nowrap="nowrap" style="background: white; padding: 0px 5.4pt;" valign="bottom" width="45"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P&gt;&lt;SPAN style="color: black; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD nowrap="nowrap" style="background: white; padding: 0px 5.4pt;" valign="bottom" width="26"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P&gt;&lt;SPAN style="color: black; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD nowrap="nowrap" style="background: white; padding: 0px 5.4pt;" valign="bottom" width="270"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P&gt;&lt;SPAN style="color: black; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt; &lt;/TR&gt; &lt;TR&gt;&lt;TD nowrap="nowrap" style="background: white; padding: 0px 5.4pt;" valign="bottom" width="68"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P&gt;&lt;SPAN style="color: black; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD style="background: white; border-width: medium 1pt 1pt; border-style: none solid solid; border-color: currentColor windowtext windowtext; padding: 0px 5.4pt;" valign="bottom" width="80"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="color: black; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt;99999&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD nowrap="nowrap" style="background: white; border-width: medium 1pt 1pt medium; border-style: none solid solid none; border-color: currentColor windowtext windowtext currentColor; padding: 0px 5.4pt;" valign="bottom" width="77"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="color: black; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt;AA&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD nowrap="nowrap" style="background: white; border-width: medium 1pt 1pt medium; border-style: none solid solid none; border-color: currentColor windowtext windowtext currentColor; padding: 0px 5.4pt;" valign="bottom" width="78"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="color: black; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt;NUR&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD nowrap="nowrap" style="background: white; border-width: medium 1pt 1pt medium; border-style: none solid solid none; border-color: currentColor windowtext windowtext currentColor; padding: 0px 5.4pt;" valign="bottom" width="69"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="color: black; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt;HLC6&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD nowrap="nowrap" style="background: white; padding: 0px 5.4pt;" valign="bottom" width="113"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P&gt;&lt;SPAN style="color: black; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD nowrap="nowrap" style="background: white; padding: 0px 5.4pt;" valign="bottom" width="57"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P&gt;&lt;SPAN style="color: black; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD nowrap="nowrap" style="background: white; padding: 0px 5.4pt;" valign="bottom" width="170"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P&gt;&lt;SPAN style="color: black; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD nowrap="nowrap" style="background: white; padding: 0px 5.4pt;" valign="bottom" width="39"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P&gt;&lt;SPAN style="color: black; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD nowrap="nowrap" style="background: white; padding: 0px 5.4pt;" valign="bottom" width="98"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P&gt;&lt;SPAN style="color: black; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD nowrap="nowrap" style="background: white; padding: 0px 5.4pt;" valign="bottom" width="45"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P&gt;&lt;SPAN style="color: black; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD nowrap="nowrap" style="background: white; padding: 0px 5.4pt;" valign="bottom" width="26"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P&gt;&lt;SPAN style="color: black; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD nowrap="nowrap" style="background: white; padding: 0px 5.4pt;" valign="bottom" width="270"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P&gt;&lt;SPAN style="color: black; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt; &lt;/TR&gt; &lt;TR&gt;&lt;TD nowrap="nowrap" style="border-width: medium 1pt 1pt; border-style: none solid solid; border-color: currentColor windowtext windowtext; padding: 0px 5.4pt;" valign="bottom" width="80"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="color: black; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt;555555&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD nowrap="nowrap" style="border-width: medium 1pt 1pt medium; border-style: none solid solid none; border-color: currentColor windowtext windowtext currentColor; padding: 0px 5.4pt;" valign="bottom" width="77"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="color: black; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt;AA&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD nowrap="nowrap" style="border-width: medium 1pt 1pt medium; border-style: none solid solid none; border-color: currentColor windowtext windowtext currentColor; padding: 0px 5.4pt;" valign="bottom" width="78"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P align="right" style="text-align: right;"&gt;&lt;SPAN style="color: black; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt;AS&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt;&lt;TD nowrap="nowrap" style="border-width: medium 1pt 1pt medium; border-style: none solid solid none; border-color: currentColor windowtext windowtext currentColor; padding: 0px 5.4pt;" valign="bottom" width="69"&gt;&lt;BR /&gt;&amp;nbsp; &lt;P&gt;&lt;SPAN style="color: black; font-family: 'Times New Roman',serif; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&amp;nbsp; &lt;/TD&gt; &lt;/TR&gt; &lt;TR&gt; &lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Jun 2015 22:18:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-get-a-macro-to-pass-dynamic-var-values-to-multiple-spread/m-p/213448#M39431</guid>
      <dc:creator>madhatter</dc:creator>
      <dc:date>2015-06-24T22:18:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to get a macro to pass dynamic var values to multiple spread sheets/apps</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-get-a-macro-to-pass-dynamic-var-values-to-multiple-spread/m-p/213449#M39432</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is there a question buried in there somewhere?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Jun 2015 03:35:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-get-a-macro-to-pass-dynamic-var-values-to-multiple-spread/m-p/213449#M39432</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2015-06-25T03:35:00Z</dc:date>
    </item>
    <item>
      <title>Re: How to get a macro to pass dynamic var values to multiple spread sheets/apps</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-get-a-macro-to-pass-dynamic-var-values-to-multiple-spread/m-p/213450#M39433</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry about that. . To summarize: I start with three data sets.&amp;nbsp; &lt;SPAN style="text-decoration: underline;"&gt;DSN1&lt;/SPAN&gt; is based on the &lt;SPAN style="text-decoration: underline;"&gt;total graduates in a major&lt;/SPAN&gt; and has 4 variables: Major, GRADS, PLACED, PCT_PLACED. &lt;SPAN style="text-decoration: underline;"&gt; DSN 2&lt;/SPAN&gt; has the graduate contact data for each non placed graduate (Major, Fname, phone data, et,).&amp;nbsp; &lt;SPAN style="text-decoration: underline;"&gt;DSN3&lt;/SPAN&gt; has one orservation for each graduate who earned more than one degree; the layout is COLID, Maj1, Maj2, Maj3, Maj4, Maj5, Maj6, Maj7 where the values of Maj1-Maj7 are the vale of Major if applicable/null if not. &lt;/P&gt;&lt;P&gt;&lt;SPAN style="text-decoration: underline;"&gt;DSN1&lt;/SPAN&gt; and &lt;SPAN style="text-decoration: underline;"&gt;DSN 2&lt;/SPAN&gt; were merged on the var Major to produce the DSN -&lt;SPAN style="text-decoration: underline;"&gt;&lt;SPAN style="background: white; color: black; text-decoration: underline;"&gt;&amp;amp;&lt;/SPAN&gt;&lt;SPAN style="background: white; color: teal; text-decoration: underline;"&gt;pe.&lt;STRONG&gt;.H&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black;"&gt;&lt;SPAN style="text-decoration: underline;"&gt;UNTED&lt;/SPAN&gt; which has the layout: &lt;/SPAN&gt;COLID, FName, LName, Home, Work_Day, Nite, Email, MD,DE, DR, NAICS, STATUS, DEPT, Major, GRADS,&amp;nbsp; PLACED,&amp;nbsp; PCT_PLACED; There is one observation per individual graduate; the values for the GRADS,&amp;nbsp; PLACED,&amp;nbsp; PCT_PLACED variables are the same for every observation in a single major.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Question 1&lt;/STRONG&gt;: What edits do I need to make to my program so it will put the correct GRADS, PLACED, PCT_PLACED&amp;nbsp; values in the title of the spread sheet for each major?.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Question 2&lt;/STRONG&gt;. How do I get SAS to put the graduates with multiple degrees in the footnote of the appropriate spreadsheet?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Charles&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;BR /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Jun 2015 12:59:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-get-a-macro-to-pass-dynamic-var-values-to-multiple-spread/m-p/213450#M39433</guid>
      <dc:creator>madhatter</dc:creator>
      <dc:date>2015-06-25T12:59:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to get a macro to pass dynamic var values to multiple spread sheets/apps</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-get-a-macro-to-pass-dynamic-var-values-to-multiple-spread/m-p/213451#M39434</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So if your report is generated BY MAJOR and you have values for &lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px; background-color: #ffffff;"&gt;GRADS,&amp;nbsp; PLACED,&amp;nbsp; PCT_PLACED for each MAJOR then you can just change your BY statement to include the other three variables and they will be available to use in titles using #BYVAL().&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px; background-color: #ffffff;"&gt;Not sure how you want to handle the mutliple degree students.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Jun 2015 14:39:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-get-a-macro-to-pass-dynamic-var-values-to-multiple-spread/m-p/213451#M39434</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2015-06-25T14:39:13Z</dc:date>
    </item>
    <item>
      <title>Re: How to get a macro to pass dynamic var values to multiple spread sheets/apps</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-get-a-macro-to-pass-dynamic-var-values-to-multiple-spread/m-p/213452#M39435</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;K.&amp;nbsp; I added the variables to my sort and added the &amp;amp;BYVAL() to my title statement, but it does not print the values in the excel file. After the data step creating the department data sets, I ran a proc freq for the major*grads*placed*pct_placed and got accurate results, so I know the data is there. I even tried sorting the AAA data independently before running the proc report. The LOG shows no errors. I added PCT_Placed as a variable and detailed it in the Proc Report and it printed out correctly.&lt;/P&gt;&lt;P&gt;Is something in my excelXP set-up scrogging this?. My code is below.&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: Comic Sans MS;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="mso-bidi-font-family: 'Comic Sans MS'; color: navy; font-size: 12pt; background: white; font-family: 'Comic Sans MS';"&gt;PROC&lt;/STRONG&gt; &lt;STRONG style="mso-bidi-font-family: 'Comic Sans MS'; color: navy; font-size: 12pt; background: white; font-family: 'Comic Sans MS';"&gt;SORT&lt;/STRONG&gt; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;DATA&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;=HUNTED; &lt;/SPAN&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;BY&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt; DEPT MAJOR GRADS PLACED PCT_PLACED COLID;&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background: white; color: green; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;/*create separate output files for each department - has data for each major*/&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="mso-bidi-font-family: 'Comic Sans MS'; color: navy; font-size: 12pt; background: white; font-family: 'Comic Sans MS';"&gt;DATA&lt;/STRONG&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt; AAA HS BUS ET IND IST PS NUR;&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;SET&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt; HUNTED;&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;IF&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt; DEPT=&lt;/SPAN&gt;&lt;SPAN style="background: white; color: purple; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;'AAA'&lt;/SPAN&gt; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;THEN&lt;/SPAN&gt; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;OUTPUT&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt; AAA;&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;IF&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt; DEPT=&lt;/SPAN&gt;&lt;SPAN style="background: white; color: purple; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;'HS'&lt;/SPAN&gt;&amp;nbsp; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;THEN&lt;/SPAN&gt; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;OUTPUT&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt; HS;&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;IF&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt; DEPT=&lt;/SPAN&gt;&lt;SPAN style="background: white; color: purple; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;'BUS'&lt;/SPAN&gt;&amp;nbsp; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;THEN&lt;/SPAN&gt; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;OUTPUT&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt; BUS;&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;IF&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt; DEPT=&lt;/SPAN&gt;&lt;SPAN style="background: white; color: purple; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;'PS'&lt;/SPAN&gt;&amp;nbsp; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;THEN&lt;/SPAN&gt; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;OUTPUT&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt; PS;&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;IF&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt; DEPT=&lt;/SPAN&gt;&lt;SPAN style="background: white; color: purple; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;'ET'&lt;/SPAN&gt;&amp;nbsp; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;THEN&lt;/SPAN&gt; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;OUTPUT&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt; ET;&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;IF&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt; DEPT=&lt;/SPAN&gt;&lt;SPAN style="background: white; color: purple; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;'IND'&lt;/SPAN&gt;&amp;nbsp; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;THEN&lt;/SPAN&gt; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;OUTPUT&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt; IND;&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;IF&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt; DEPT=&lt;/SPAN&gt;&lt;SPAN style="background: white; color: purple; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;'IST'&lt;/SPAN&gt;&amp;nbsp; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;THEN&lt;/SPAN&gt; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;OUTPUT&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt; IST;&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;IF&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt; DEPT=&lt;/SPAN&gt;&lt;SPAN style="background: white; color: purple; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;'NUR'&lt;/SPAN&gt;&amp;nbsp; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;THEN&lt;/SPAN&gt; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;OUTPUT&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt; NUR;&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;RUN&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;ods&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt; tagsets.ExcelXP&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;FILE&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;=&lt;/SPAN&gt;&lt;SPAN style="background: white; color: purple; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;"C:\PROGEVAL 2015\REPORTS\AAA&amp;nbsp; 2013-14 Graduate Contacts testx.Xml"&lt;/SPAN&gt; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;style&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;=barrettsblue;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;ods&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt; tagsets.ExcelXP options (autofit_height= &lt;/SPAN&gt;&lt;SPAN style="background: white; color: purple; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;'yes'&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt; embedded_titles=&lt;/SPAN&gt;&lt;SPAN style="background: white; color: purple; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;'yes' &lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;embedded_footnotes=&lt;/SPAN&gt;&lt;SPAN style="background: white; color: purple; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;'yes'&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt; &lt;BR /&gt;merge_titles_footnotes=&lt;/SPAN&gt;&lt;SPAN style="background: white; color: purple; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;'yes'&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;sheet_interval=&lt;/SPAN&gt;&lt;SPAN style="background: white; color: purple; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;'bygroup'&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt; sheet_label=&lt;/SPAN&gt;&lt;SPAN style="background: white; color: purple; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;' '&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;&amp;nbsp; frozen_headers= &lt;/SPAN&gt;&lt;SPAN style="background: white; color: purple; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;'3'&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt; absolute_column_width= &lt;/SPAN&gt;&lt;SPAN style="background: white; color: purple; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;'6,6,8,12,9,9,9,20,3,6,3,3,35'&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt; &lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;row_height_fudge=&lt;/SPAN&gt;&lt;SPAN style="background: white; color: purple; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;'3'&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt; );&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;title&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;; &lt;/SPAN&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;footnote&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;title1&lt;/SPAN&gt; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;font&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;=timesRoman bold &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;FONT&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;=&lt;/SPAN&gt;&lt;SPAN style="background: white; color: purple; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;'12PT'&lt;/SPAN&gt; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;h&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;=&lt;/SPAN&gt;&lt;STRONG style="mso-bidi-font-family: 'Comic Sans MS'; color: teal; font-size: 12pt; background: white; font-family: 'Comic Sans MS';"&gt;4&lt;/STRONG&gt; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;color&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;=blue &lt;/SPAN&gt;&lt;SPAN style="background: white; color: purple; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;"2013-14&amp;nbsp; #BYVAL(MAJOR) Graduates Not Placed "&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;title2&lt;/SPAN&gt; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;font&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;=timesRoman &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;FONT&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;=&lt;/SPAN&gt;&lt;SPAN style="background: white; color: purple; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;'11PT'&lt;/SPAN&gt;&amp;nbsp; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;h&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;=&lt;/SPAN&gt;&lt;STRONG style="mso-bidi-font-family: 'Comic Sans MS'; color: teal; font-size: 12pt; background: white; font-family: 'Comic Sans MS';"&gt;4&lt;/STRONG&gt; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;color&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;=blue &lt;/SPAN&gt;&lt;SPAN style="background: white; color: purple; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;" In the Status Column, please use the following codes&lt;BR /&gt;to indicate the Graduate's status"&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;;&lt;/SPAN&gt;&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;title3&lt;/SPAN&gt; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;font&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;=timesRoman &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;FONT&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;=&lt;/SPAN&gt;&lt;SPAN style="background: white; color: purple; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;'11PT'&lt;/SPAN&gt; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;h&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;=&lt;/SPAN&gt;&lt;STRONG style="mso-bidi-font-family: 'Comic Sans MS'; color: teal; font-size: 12pt; background: white; font-family: 'Comic Sans MS';"&gt;4&lt;/STRONG&gt; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;color&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;=blue &lt;/SPAN&gt;&lt;SPAN style="background: white; color: purple; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;"FT= Work FT in Job Related to Degree, PT=&lt;BR /&gt;Work PT in Job Related to Degree, S =Full-time Student Fall 2014&amp;nbsp; I= Not Seeking Work/Active Duty"&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;title4&lt;/SPAN&gt; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;font&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;=timesRoman &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;FONT&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;=&lt;/SPAN&gt;&lt;SPAN style="background: white; color: purple; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;'11PT'&lt;/SPAN&gt; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;h&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;=&lt;/SPAN&gt;&lt;STRONG style="mso-bidi-font-family: 'Comic Sans MS'; color: teal; font-size: 12pt; background: white; font-family: 'Comic Sans MS';"&gt;4&lt;/STRONG&gt;&amp;nbsp; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;color&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;=black &lt;/SPAN&gt;&lt;SPAN style="background: white; color: purple; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;"Graduates:&amp;nbsp; #BYVAL(GRADS) &lt;BR /&gt;Placed:&amp;nbsp;&amp;nbsp; #BYVAL(PLACED)&amp;nbsp; Percent Placed:&amp;nbsp; #BYVAL(PCT_PLACED)"&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;footnote1&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;font&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;=timesRoman &lt;/SPAN&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;h&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;=&lt;/SPAN&gt;&lt;STRONG style="mso-bidi-font-family: 'Comic Sans MS'; color: teal; font-size: 12pt; background: white; font-family: 'Comic Sans MS';"&gt;3&lt;/STRONG&gt;&amp;nbsp; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;color&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;=blue&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="background: white; color: purple; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://www.census.gov/eos/www/naics/"&gt;http://www.census.gov/eos/www/naics/&lt;/A&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;;&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;footnote2&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;font&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;=timesRoman &lt;/SPAN&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;h&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;=&lt;/SPAN&gt;&lt;STRONG style="mso-bidi-font-family: 'Comic Sans MS'; color: teal; font-size: 12pt; background: white; font-family: 'Comic Sans MS';"&gt;3&lt;/STRONG&gt; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;J&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;=&lt;/SPAN&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;L&lt;/SPAN&gt; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;color&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;=blue&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="background: white; color: purple; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;"Note: A 'Y' in the MD column indicates&lt;BR /&gt;that the graduate has multiple degrees. If a graduate with multiple degrees is 'PLACED' for one one degree,&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="background: white; color: purple; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;s/he is considered placed for all degrees."&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;; &lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;footnote3&lt;/SPAN&gt; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;font&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;=timesRoman &lt;/SPAN&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;h&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;=&lt;/SPAN&gt;&lt;STRONG style="mso-bidi-font-family: 'Comic Sans MS'; color: teal; font-size: 12pt; background: white; font-family: 'Comic Sans MS';"&gt;3&lt;/STRONG&gt; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;J&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;=&lt;/SPAN&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;L&lt;/SPAN&gt; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;color&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;=BLACK &lt;/SPAN&gt;&lt;SPAN style="background: white; color: purple; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;"Multiple degree graduates for this program and their other degrees are listed below:"&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="mso-bidi-font-family: 'Comic Sans MS'; color: navy; font-size: 12pt; background: white; font-family: 'Comic Sans MS';"&gt;PROC&lt;/STRONG&gt; &lt;STRONG style="mso-bidi-font-family: 'Comic Sans MS'; color: navy; font-size: 12pt; background: white; font-family: 'Comic Sans MS';"&gt;REPORT&lt;/STRONG&gt; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;DATA&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;=AAA &lt;/SPAN&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;NOWD&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;; &lt;/SPAN&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;BY&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;&amp;nbsp; major; &lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;COLUMNS&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt; MAJOR COLID&amp;nbsp; FNAME LNAME Home Work_Day Nite Email MD STATUS DE DR NAICST ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;DEFINE&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt; MAJOR/ORDER &lt;/SPAN&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;WIDTH&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;=&lt;/SPAN&gt;&lt;STRONG style="mso-bidi-font-family: 'Comic Sans MS'; color: teal; font-size: 12pt; background: white; font-family: 'Comic Sans MS';"&gt;5&lt;/STRONG&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;;&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;DEFINE&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt; COLID/ &lt;/SPAN&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;DISPLAY&lt;/SPAN&gt; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;WIDTH&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;=&lt;/SPAN&gt;&lt;STRONG style="mso-bidi-font-family: 'Comic Sans MS'; color: teal; font-size: 12pt; background: white; font-family: 'Comic Sans MS';"&gt;10&lt;/STRONG&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;;&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;DEFINE&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt; FName/&lt;/SPAN&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;DISPLAY&lt;/SPAN&gt; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;WIDTH&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;=&lt;/SPAN&gt;&lt;STRONG style="mso-bidi-font-family: 'Comic Sans MS'; color: teal; font-size: 12pt; background: white; font-family: 'Comic Sans MS';"&gt;20&lt;/STRONG&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;;&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;DEFINE&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt; LName/&lt;/SPAN&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;DISPLAY&lt;/SPAN&gt; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;WIDTH&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;=&lt;/SPAN&gt;&lt;STRONG style="mso-bidi-font-family: 'Comic Sans MS'; color: teal; font-size: 12pt; background: white; font-family: 'Comic Sans MS';"&gt;20&lt;/STRONG&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;;&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;DEFINE&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt; Home/&lt;/SPAN&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;DISPLAY&lt;/SPAN&gt; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;WIDTH&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;=&lt;/SPAN&gt;&lt;STRONG style="mso-bidi-font-family: 'Comic Sans MS'; color: teal; font-size: 12pt; background: white; font-family: 'Comic Sans MS';"&gt;12&lt;/STRONG&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;;&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;DEFINE&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt; Work_Day/&lt;/SPAN&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;DISPLAY&lt;/SPAN&gt; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;WIDTH&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;=&lt;/SPAN&gt;&lt;STRONG style="mso-bidi-font-family: 'Comic Sans MS'; color: teal; font-size: 12pt; background: white; font-family: 'Comic Sans MS';"&gt;12&lt;/STRONG&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;;&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;DEFINE&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt; Nite/&lt;/SPAN&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;DISPLAY&lt;/SPAN&gt; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;WIDTH&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;=&lt;/SPAN&gt;&lt;STRONG style="mso-bidi-font-family: 'Comic Sans MS'; color: teal; font-size: 12pt; background: white; font-family: 'Comic Sans MS';"&gt;12&lt;/STRONG&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;;&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;DEFINE&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt; Email/&lt;/SPAN&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;DISPLAY&lt;/SPAN&gt; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;WIDTH&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;=&lt;/SPAN&gt;&lt;STRONG style="mso-bidi-font-family: 'Comic Sans MS'; color: teal; font-size: 12pt; background: white; font-family: 'Comic Sans MS';"&gt;45&lt;/STRONG&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;;&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;DEFINE&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt; MD/&lt;/SPAN&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;DISPLAY&lt;/SPAN&gt; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;WIDTH&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;=&lt;/SPAN&gt;&lt;STRONG style="mso-bidi-font-family: 'Comic Sans MS'; color: teal; font-size: 12pt; background: white; font-family: 'Comic Sans MS';"&gt;3&lt;/STRONG&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;;&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;DEFINE&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt; STATUS/&lt;/SPAN&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;DISPLAY&lt;/SPAN&gt; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;WIDTH&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;=&lt;/SPAN&gt;&lt;STRONG style="mso-bidi-font-family: 'Comic Sans MS'; color: teal; font-size: 12pt; background: white; font-family: 'Comic Sans MS';"&gt;6&lt;/STRONG&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;;&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;DEFINE&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt; DE/&lt;/SPAN&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;DISPLAY&lt;/SPAN&gt; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;WIDTH&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;=&lt;/SPAN&gt;&lt;STRONG style="mso-bidi-font-family: 'Comic Sans MS'; color: teal; font-size: 12pt; background: white; font-family: 'Comic Sans MS';"&gt;7&lt;/STRONG&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;;&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;DEFINE&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt; DR/&lt;/SPAN&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;DISPLAY&lt;/SPAN&gt; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;WIDTH&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;=&lt;/SPAN&gt;&lt;STRONG style="mso-bidi-font-family: 'Comic Sans MS'; color: teal; font-size: 12pt; background: white; font-family: 'Comic Sans MS';"&gt;7&lt;/STRONG&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;;&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;DEFINE&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt; NAICST/ &lt;/SPAN&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;DISPLAY&lt;/SPAN&gt; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;WIDTH&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;=&lt;/SPAN&gt;&lt;STRONG style="mso-bidi-font-family: 'Comic Sans MS'; color: teal; font-size: 12pt; background: white; font-family: 'Comic Sans MS';"&gt;55&lt;/STRONG&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;;&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;BREAK&lt;/SPAN&gt; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;AFTER&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt; MAJOR / &lt;/SPAN&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;PAGE&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;;&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;STRONG style="mso-bidi-font-family: 'Comic Sans MS'; color: navy; font-size: 12pt; background: white; font-family: 'Comic Sans MS';"&gt;RUN&lt;/STRONG&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; &lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;ods&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt; tagsets.ExcelXP &lt;/SPAN&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;close&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Comic Sans MS'; font-size: 12pt; mso-bidi-font-family: 'Comic Sans MS';"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: Comic Sans MS;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: Comic Sans MS;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Jun 2015 16:28:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-get-a-macro-to-pass-dynamic-var-values-to-multiple-spread/m-p/213452#M39435</guid>
      <dc:creator>madhatter</dc:creator>
      <dc:date>2015-06-25T16:28:32Z</dc:date>
    </item>
    <item>
      <title>Re: How to get a macro to pass dynamic var values to multiple spread sheets/apps</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-get-a-macro-to-pass-dynamic-var-values-to-multiple-spread/m-p/213453#M39436</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So you included #BYVAL() in the TITLE, but the variables you are referencing are not in your BY statement on the PROC REPORT step.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Jun 2015 16:45:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-get-a-macro-to-pass-dynamic-var-values-to-multiple-spread/m-p/213453#M39436</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2015-06-25T16:45:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to get a macro to pass dynamic var values to multiple spread sheets/apps</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-get-a-macro-to-pass-dynamic-var-values-to-multiple-spread/m-p/213454#M39437</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Tom :&lt;/P&gt;&lt;P&gt;Found the problem; I did not have the" by variables" on the the proc report command. IT works.&amp;nbsp; The PCT_PLACED is printing in the format ##.#####;any way to change this via sas and is it possible to change the color of the variable value so it would be like GRADS in black and the VALUE in blue?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Jun 2015 16:49:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-get-a-macro-to-pass-dynamic-var-values-to-multiple-spread/m-p/213454#M39437</guid>
      <dc:creator>madhatter</dc:creator>
      <dc:date>2015-06-25T16:49:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to get a macro to pass dynamic var values to multiple spread sheets/apps</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-get-a-macro-to-pass-dynamic-var-values-to-multiple-spread/m-p/213455#M39438</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You should be able to use font commands in title statement.&lt;/P&gt;&lt;P&gt;You can use a FORMAT statement to change the format used to display the value of a by variable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: blue; background: white;"&gt;title1&lt;/SPAN&gt; &lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: blue; background: white;"&gt;color&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;=black &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: purple; background: white;"&gt;'#byvar(age) ='&lt;/SPAN&gt; &lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: blue; background: white;"&gt;color&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;=blue &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: purple; background: white;"&gt;'#byval(age)'&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;STRONG style="color: navy; background: white; font-size: 10.0pt; font-family: 'Courier New';"&gt;proc&lt;/STRONG&gt; &lt;STRONG style="color: navy; background: white; font-size: 10.0pt; font-family: 'Courier New';"&gt;print&lt;/STRONG&gt; &lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: blue; background: white;"&gt;data&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;=sashelp.class;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&amp;nbsp; &lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: blue; background: white;"&gt;where&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt; age=&lt;/SPAN&gt;&lt;STRONG style="color: teal; background: white; font-size: 10.0pt; font-family: 'Courier New';"&gt;12&lt;/STRONG&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&amp;nbsp; &lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: blue; background: white;"&gt;by&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt; age;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&amp;nbsp; &lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: blue; background: white;"&gt;format&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt; age &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: teal; background: white;"&gt;Z7.3&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt; ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: navy; background: white; font-size: 10.0pt; font-family: 'Courier New';"&gt;run&lt;/STRONG&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Jun 2015 17:00:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-get-a-macro-to-pass-dynamic-var-values-to-multiple-spread/m-p/213455#M39438</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2015-06-25T17:00:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to get a macro to pass dynamic var values to multiple spread sheets/apps</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-get-a-macro-to-pass-dynamic-var-values-to-multiple-spread/m-p/213456#M39439</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I see you've got something that works, but don't you want to wrap the proc report in a macro too.&lt;/P&gt;&lt;P&gt;Something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%let depts=AAA HS BUS ET IND IST PS NUR;&lt;/P&gt;&lt;P&gt;%macro dodepts;&lt;/P&gt;&lt;P&gt;%do i=1 %to %sysfunc(countw("&amp;amp;depts"));&lt;/P&gt;&lt;P&gt;%let dept=%scan(&amp;amp;depts,&amp;amp;i);&lt;/P&gt;&lt;P&gt;%doreport(&amp;amp;dept);&lt;/P&gt;&lt;P&gt;%end;&lt;/P&gt;&lt;P&gt;%mend dodepts;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%macro doreport(dept);&lt;/P&gt;&lt;P&gt;data _temp;&lt;/P&gt;&lt;P&gt;set hunted;&lt;/P&gt;&lt;P&gt;if dept="&amp;amp;dept";&lt;/P&gt;&lt;P&gt;CALL SYMPUT ('GR',trim(left(put (GRADS,8.))));&lt;/P&gt;&lt;P&gt;CALL SYMPUT ('PL', trim(left(put(PLACED,8.))));&lt;/P&gt;&lt;P&gt;CALL SYMPUT ('PCT',trim(left(put(PCT_PLACED,8.))));&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ods tagsets.ExcelXP&amp;nbsp; FILE="C:\PROGEVAL 2015\REPORTS\&amp;amp;dept.&amp;nbsp; 2013-14 Graduate Contacts testx.Xml" style=barrettsblue;&lt;/P&gt;&lt;P&gt;* etc;&lt;/P&gt;&lt;P&gt;&amp;nbsp; title4 font=timesRoman h=4&amp;nbsp;&amp;nbsp; color=BLACK "Graduates: &amp;amp;GR&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Placed: &amp;amp;PL&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Percent Placed: &amp;amp;PCT";&lt;/P&gt;&lt;P&gt;* etc;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc report data=_temp;&lt;/P&gt;&lt;P&gt;* etc;&lt;/P&gt;&lt;P&gt;%mend doreport;&lt;/P&gt;&lt;P&gt;%dodepts;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Geoff Der ps. You could also put all the code inside the dodepts macro and only have one macro, if you find that simpler.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Jun 2015 13:26:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-get-a-macro-to-pass-dynamic-var-values-to-multiple-spread/m-p/213456#M39439</guid>
      <dc:creator>GeoffDer</dc:creator>
      <dc:date>2015-06-29T13:26:04Z</dc:date>
    </item>
  </channel>
</rss>

