<?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: If/Else Errors in SAS 9.4 in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/If-Else-Errors-in-SAS-9-4/m-p/279459#M311313</link>
    <description>&lt;P&gt;1. Format your code and you'll see the error&lt;/P&gt;
&lt;P&gt;2. Use IN rather than multiple OR's&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Your last condition is else, but it should be else-if.&lt;/P&gt;
&lt;P&gt;Institution in ("GreaterBaltimoreMedicalCenter", "Wenatchee Valley(confluence)", "UnityPointHealth" ....) then&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data models_baseline;
	set baseline;

	if institution="GreaterBaltimoreMedicalCenter" or 
		institution="Wenatchee Valley(confluence)" or institution="UnityPointHealth" 
		or institution="Northshore" or institution="SCLHS(Saint Joseph Hospital)" or 
		institution="Coborn Cancer Center(St Cloud Hospital)" or 
		institution="PromedicaResearchInstitute" or 
		institution="AlbertEinsteinHealthNetwork" or 
		institution="SouthGeorgiaMedicalCenter" or institution="Sanford Clinic North" 
		or institution="WheatonFranciscanHealthcare" or 
		institution="EssentiaInstituteofRuralHealth" then
			model="CO";
	else if institution="Joliet Oncology Hematology Associates" or 
		institution="Spartanburg Regional Health (Gibbs Cancer Ctr)" or 
		institution="Legacy Health" or institution="Parkview Hospital" or 
		institution="Aultman Hospital" or institution="Augusta Health Cancer Center" 
		or institution="Hennepin County Medical Center" or 
		institution="Oregon Health &amp;amp; Sciences University" or 
		institution="Memorial Medical Center" or 
		institution="New England Cancer Specialists" then
			model="OO";
	else if
		institution="Canton Mercy Medical Center" or institution="Park Ridge Health" 
			or institution="Akron General Medical Center" or 
			institution="St. Mary Medical Center" or 
			institution="St. Luke's Hospital of Kansas City" or 
			institution="Anchorage Radiation Therapy Center" or 
			institution="St. Vincent's Healthcare" or 
			institution="St. Jude Medical Center" or 
			institution="The Presbyterian Hospital (Novant Health)" or 
			institution="Berkshire Medical Center" then model="ORW";
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 22 Jun 2016 18:12:04 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2016-06-22T18:12:04Z</dc:date>
    <item>
      <title>If/Else Errors in SAS 9.4</title>
      <link>https://communities.sas.com/t5/SAS-Programming/If-Else-Errors-in-SAS-9-4/m-p/279454#M311312</link>
      <description>&lt;P&gt;&amp;nbsp;Can anyone help with this code:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;data models_baseline;&lt;BR /&gt;set baseline;&lt;BR /&gt;if institution="GreaterBaltimoreMedicalCenter"&lt;BR /&gt;or institution="Wenatchee Valley(confluence)"&lt;BR /&gt;or institution="UnityPointHealth"&lt;BR /&gt;or institution="Northshore"&lt;BR /&gt;or institution="SCLHS(Saint Joseph Hospital)"&lt;BR /&gt;or institution="Coborn Cancer Center(St Cloud Hospital)"&lt;BR /&gt;or institution="PromedicaResearchInstitute"&lt;BR /&gt;or institution="AlbertEinsteinHealthNetwork"&lt;BR /&gt;or institution="SouthGeorgiaMedicalCenter"&lt;BR /&gt;or institution="Sanford Clinic North"&lt;BR /&gt;or institution="WheatonFranciscanHealthcare"&lt;BR /&gt;or institution="EssentiaInstituteofRuralHealth" then model="CO";&lt;BR /&gt;else if institution="Joliet Oncology Hematology Associates"&lt;BR /&gt;or institution="Spartanburg Regional Health (Gibbs Cancer Ctr)"&lt;BR /&gt;or institution="Legacy Health"&lt;BR /&gt;or institution="Parkview Hospital"&lt;BR /&gt;or institution="Aultman Hospital"&lt;BR /&gt;or institution="Augusta Health Cancer Center"&lt;BR /&gt;or institution="Hennepin County Medical Center"&lt;BR /&gt;or institution="Oregon Health &amp;amp; Sciences University"&lt;BR /&gt;or institution="Memorial Medical Center"&lt;BR /&gt;or institution="New England Cancer Specialists" then model="OO";&lt;BR /&gt;else institution="Canton Mercy Medical Center"&lt;BR /&gt;or institution="Park Ridge Health"&lt;BR /&gt;or institution="Akron General Medical Center"&lt;BR /&gt;or institution="St. Mary Medical Center"&lt;BR /&gt;or institution="St. Luke's Hospital of Kansas City"&lt;BR /&gt;or institution="Anchorage Radiation Therapy Center"&lt;BR /&gt;or institution="St. Vincent's Healthcare"&lt;BR /&gt;or institution="St. Jude Medical Center"&lt;BR /&gt;or institution="The Presbyterian Hospital (Novant Health)"&lt;BR /&gt;or institution="Berkshire Medical Center" then model="ORW";&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When I run the code, no data shows us up for the variable "model" and I also get the following error messages:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;15193&lt;BR /&gt;15194 data models_baseline;&lt;BR /&gt;15195 set baseline;&lt;BR /&gt;15196 if institution="GreaterBaltimoreMedicalCenter"&lt;BR /&gt;15197 or institution="Wenatchee Valley(confluence)"&lt;BR /&gt;15198 or institution="UnityPointHealth"&lt;BR /&gt;15199 or institution="Northshore"&lt;BR /&gt;15200 or institution="SCLHS(Saint Joseph Hospital)"&lt;BR /&gt;15201 or institution="Coborn Cancer Center(St Cloud Hospital)"&lt;BR /&gt;15202 or institution="PromedicaResearchInstitute"&lt;BR /&gt;15203 or institution="AlbertEinsteinHealthNetwork"&lt;BR /&gt;15204 or institution="SouthGeorgiaMedicalCenter"&lt;BR /&gt;15205 or institution="Sanford Clinic North"&lt;BR /&gt;15206 or institution="WheatonFranciscanHealthcare"&lt;BR /&gt;15207 or institution="EssentiaInstituteofRuralHealth" then model="CO";&lt;BR /&gt;15208 else if institution="Joliet Oncology Hematology Associates"&lt;BR /&gt;15209 or institution="Spartanburg Regional Health (Gibbs Cancer Ctr)"&lt;BR /&gt;15210 or institution="Legacy Health"&lt;BR /&gt;15211 or institution="Parkview Hospital"&lt;BR /&gt;15212 or institution="Aultman Hospital"&lt;BR /&gt;15213 or institution="Augusta Health Cancer Center"&lt;BR /&gt;15214 or institution="Hennepin County Medical Center"&lt;BR /&gt;15215 or institution="Oregon Health &amp;amp; Sciences University"&lt;BR /&gt;15216 or institution="Memorial Medical Center"&lt;BR /&gt;15217 or institution="New England Cancer Specialists" then model="OO";&lt;BR /&gt;15218 else institution="Canton Mercy Medical Center"&lt;BR /&gt;15219 or institution="Park Ridge Health"&lt;BR /&gt;15220 or institution="Akron General Medical Center"&lt;BR /&gt;15221 or institution="St. Mary Medical Center"&lt;BR /&gt;15222 or institution="St. Luke's Hospital of Kansas City"&lt;BR /&gt;15223 or institution="Anchorage Radiation Therapy Center"&lt;BR /&gt;15224 or institution="St. Vincent's Healthcare"&lt;BR /&gt;15225 or institution="St. Jude Medical Center"&lt;BR /&gt;15226 or institution="The Presbyterian Hospital (Novant Health)"&lt;BR /&gt;15227 or institution="Berkshire Medical Center" then model="ORW";&lt;BR /&gt;----&lt;BR /&gt;388&lt;BR /&gt;202&lt;BR /&gt;ERROR 388-185: Expecting an arithmetic operator.&lt;/P&gt;&lt;P&gt;ERROR 202-322: The option or parameter is not recognized and will be ignored.&lt;/P&gt;&lt;P&gt;15228 run;&lt;/P&gt;&lt;P&gt;NOTE: Character values have been converted to numeric values at the places given by:&lt;BR /&gt;(Line):(Column).&lt;BR /&gt;15196:16 15197:16 15198:16 15199:16 15200:16 15201:16 15202:16 15203:16&lt;BR /&gt;15204:16 15205:16 15206:16 15207:16 15208:21 15209:16 15210:16 15211:16&lt;BR /&gt;15212:16 15213:16 15214:16 15215:16 15216:16 15217:16 15218:18 15219:16&lt;BR /&gt;15220:16 15221:16 15222:16 15223:16 15224:16 15225:16 15226:16 15227:16&lt;BR /&gt;15227:48 15227:54&lt;BR /&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;BR /&gt;WARNING: The data set WORK.MODELS_BASELINE may be incomplete. When this step was stopped&lt;BR /&gt;there were 0 observations and 146 variables.&lt;BR /&gt;WARNING: Data set WORK.MODELS_BASELINE was not replaced because this step was stopped.&lt;BR /&gt;NOTE: DATA statement used (Total process time):&lt;BR /&gt;real time 0.00 seconds&lt;BR /&gt;cpu time 0.00 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would greatly appreciate the help. Usually if/else statements are not this hard for me but for some reason, I am stuck here.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you in advance.&lt;/P&gt;</description>
      <pubDate>Wed, 22 Jun 2016 17:53:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/If-Else-Errors-in-SAS-9-4/m-p/279454#M311312</guid>
      <dc:creator>malikah_sph</dc:creator>
      <dc:date>2016-06-22T17:53:26Z</dc:date>
    </item>
    <item>
      <title>Re: If/Else Errors in SAS 9.4</title>
      <link>https://communities.sas.com/t5/SAS-Programming/If-Else-Errors-in-SAS-9-4/m-p/279459#M311313</link>
      <description>&lt;P&gt;1. Format your code and you'll see the error&lt;/P&gt;
&lt;P&gt;2. Use IN rather than multiple OR's&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Your last condition is else, but it should be else-if.&lt;/P&gt;
&lt;P&gt;Institution in ("GreaterBaltimoreMedicalCenter", "Wenatchee Valley(confluence)", "UnityPointHealth" ....) then&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data models_baseline;
	set baseline;

	if institution="GreaterBaltimoreMedicalCenter" or 
		institution="Wenatchee Valley(confluence)" or institution="UnityPointHealth" 
		or institution="Northshore" or institution="SCLHS(Saint Joseph Hospital)" or 
		institution="Coborn Cancer Center(St Cloud Hospital)" or 
		institution="PromedicaResearchInstitute" or 
		institution="AlbertEinsteinHealthNetwork" or 
		institution="SouthGeorgiaMedicalCenter" or institution="Sanford Clinic North" 
		or institution="WheatonFranciscanHealthcare" or 
		institution="EssentiaInstituteofRuralHealth" then
			model="CO";
	else if institution="Joliet Oncology Hematology Associates" or 
		institution="Spartanburg Regional Health (Gibbs Cancer Ctr)" or 
		institution="Legacy Health" or institution="Parkview Hospital" or 
		institution="Aultman Hospital" or institution="Augusta Health Cancer Center" 
		or institution="Hennepin County Medical Center" or 
		institution="Oregon Health &amp;amp; Sciences University" or 
		institution="Memorial Medical Center" or 
		institution="New England Cancer Specialists" then
			model="OO";
	else if
		institution="Canton Mercy Medical Center" or institution="Park Ridge Health" 
			or institution="Akron General Medical Center" or 
			institution="St. Mary Medical Center" or 
			institution="St. Luke's Hospital of Kansas City" or 
			institution="Anchorage Radiation Therapy Center" or 
			institution="St. Vincent's Healthcare" or 
			institution="St. Jude Medical Center" or 
			institution="The Presbyterian Hospital (Novant Health)" or 
			institution="Berkshire Medical Center" then model="ORW";
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 22 Jun 2016 18:12:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/If-Else-Errors-in-SAS-9-4/m-p/279459#M311313</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-06-22T18:12:04Z</dc:date>
    </item>
    <item>
      <title>Re: If/Else Errors in SAS 9.4</title>
      <link>https://communities.sas.com/t5/SAS-Programming/If-Else-Errors-in-SAS-9-4/m-p/279491#M311314</link>
      <description>Thank you for your help, however, it is still not working.</description>
      <pubDate>Wed, 22 Jun 2016 18:28:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/If-Else-Errors-in-SAS-9-4/m-p/279491#M311314</guid>
      <dc:creator>malikah_sph</dc:creator>
      <dc:date>2016-06-22T18:28:39Z</dc:date>
    </item>
    <item>
      <title>Re: If/Else Errors in SAS 9.4</title>
      <link>https://communities.sas.com/t5/SAS-Programming/If-Else-Errors-in-SAS-9-4/m-p/279524#M311315</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/84298"&gt;@malikah_sph&lt;/a&gt; wrote:&lt;BR /&gt;Thank you for your help, however, it is still not working.&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;What does that mean? Are you getting an error, if so post your full log?&lt;/P&gt;</description>
      <pubDate>Wed, 22 Jun 2016 18:48:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/If-Else-Errors-in-SAS-9-4/m-p/279524#M311315</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-06-22T18:48:47Z</dc:date>
    </item>
    <item>
      <title>Re: If/Else Errors in SAS 9.4</title>
      <link>https://communities.sas.com/t5/SAS-Programming/If-Else-Errors-in-SAS-9-4/m-p/279528#M311316</link>
      <description>&lt;P&gt;The log showed the following:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;19858 data models_baseline;&lt;BR /&gt;19859 set baseline;&lt;BR /&gt;19860&lt;BR /&gt;19861 if institution="GreaterBaltimoreMedicalCenter" or&lt;BR /&gt;19862 institution="Wenatchee Valley(confluence)" or institution="UnityPointHealth"&lt;BR /&gt;19863 or institution="Northshore" or institution="SCLHS(Saint Joseph Hospital)" or&lt;BR /&gt;19864 institution="Coborn Cancer Center(St Cloud Hospital)" or&lt;BR /&gt;19865 institution="PromedicaResearchInstitute" or&lt;BR /&gt;19866 institution="AlbertEinsteinHealthNetwork" or&lt;BR /&gt;19867 institution="SouthGeorgiaMedicalCenter" or institution="Sanford Clinic North"&lt;BR /&gt;19868 or institution="WheatonFranciscanHealthcare" or&lt;BR /&gt;19869 institution="EssentiaInstituteofRuralHealth" then&lt;BR /&gt;19870 model=1;&lt;BR /&gt;19871 else if institution="Joliet Oncology Hematology Associates" or&lt;BR /&gt;19872 institution="Spartanburg Regional Health (Gibbs Cancer Ctr)" or&lt;BR /&gt;19873 institution="Legacy Health" or institution="Parkview Hospital" or&lt;BR /&gt;19874 institution="Aultman Hospital" or institution="Augusta Health Cancer Center"&lt;BR /&gt;19875 or institution="Hennepin County Medical Center" or&lt;BR /&gt;19876 institution="Oregon Health &amp;amp; Sciences University" or&lt;BR /&gt;19877 institution="Memorial Medical Center" or&lt;BR /&gt;19878 institution="New England Cancer Specialists" then&lt;BR /&gt;19879 model=2;&lt;BR /&gt;19880 else if&lt;BR /&gt;19881 institution="Canton Mercy Medical Center" or institution="Park Ridge Health"&lt;BR /&gt;19882 or institution="Akron General Medical Center" or&lt;BR /&gt;19883 institution="St. Mary Medical Center" or&lt;BR /&gt;19884 institution="St. Luke's Hospital of Kansas City" or&lt;BR /&gt;19885 institution="Anchorage Radiation Therapy Center" or&lt;BR /&gt;19886 institution="St. Vincent's Healthcare" or&lt;BR /&gt;19887 institution="St. Jude Medical Center" or&lt;BR /&gt;19888 institution="The Presbyterian Hospital (Novant Health)" or&lt;BR /&gt;19889 institution="Berkshire Medical Center" then model=3;&lt;BR /&gt;19890 run;&lt;/P&gt;&lt;P&gt;NOTE: Character values have been converted to numeric values at the places given by:&lt;BR /&gt;(Line):(Column).&lt;BR /&gt;19861:20 19862:21 19862:67 19863:24 19863:52 19864:21 19865:21 19866:21&lt;BR /&gt;19867:21 19867:64 19868:24 19869:21 19871:25 19872:21 19873:21 19873:52&lt;BR /&gt;19874:21 19874:55 19875:24 19876:21 19877:21 19878:21 19881:21 19881:66&lt;BR /&gt;19882:28 19883:25 19884:25 19885:25 19886:25 19887:25 19888:25 19889:25&lt;BR /&gt;NOTE: Invalid numeric data, 'GreaterBaltimoreMedicalCenter' , at line 19861 column 20.&lt;BR /&gt;NOTE: Invalid numeric data, 'Wenatchee Valley(confluence)' , at line 19862 column 21.&lt;BR /&gt;NOTE: Invalid numeric data, 'UnityPointHealth' , at line 19862 column 67.&lt;BR /&gt;NOTE: Invalid numeric data, 'Northshore' , at line 19863 column 24.&lt;BR /&gt;NOTE: Invalid numeric data, 'SCLHS(Saint Joseph Hospital)' , at line 19863 column 52.&lt;BR /&gt;NOTE: Invalid numeric data, 'Coborn Cancer Center(St Cloud Hospital)' , at line 19864 column&lt;BR /&gt;21.&lt;BR /&gt;NOTE: Invalid numeric data, 'PromedicaResearchInstitute' , at line 19865 column 21.&lt;BR /&gt;NOTE: Invalid numeric data, 'AlbertEinsteinHealthNetwork' , at line 19866 column 21.&lt;BR /&gt;NOTE: Invalid numeric data, 'SouthGeorgiaMedicalCenter' , at line 19867 column 21.&lt;BR /&gt;NOTE: Invalid numeric data, 'Sanford Clinic North' , at line 19867 column 64.&lt;BR /&gt;NOTE: Invalid numeric data, 'WheatonFranciscanHealthcare' , at line 19868 column 24.&lt;BR /&gt;NOTE: Invalid numeric data, 'EssentiaInstituteofRuralHealth' , at line 19869 column 21.&lt;BR /&gt;NOTE: Invalid numeric data, 'Joliet Oncology Hematology Associates' , at line 19871 column 25.&lt;BR /&gt;NOTE: Invalid numeric data, 'Spartanburg Regional Health (Gibbs Cancer Ctr)' , at line 19872&lt;BR /&gt;column 21.&lt;BR /&gt;NOTE: Invalid numeric data, 'Legacy Health' , at line 19873 column 21.&lt;BR /&gt;NOTE: Invalid numeric data, 'Parkview Hospital' , at line 19873 column 52.&lt;BR /&gt;NOTE: Invalid numeric data, 'Aultman Hospital' , at line 19874 column 21.&lt;BR /&gt;NOTE: Invalid numeric data, 'Augusta Health Cancer Center' , at line 19874 column 55.&lt;BR /&gt;NOTE: Invalid numeric data, 'Hennepin County Medical Center' , at line 19875 column 24.&lt;BR /&gt;NOTE: Invalid numeric data, 'Oregon Health &amp;amp; Sciences University' , at line 19876 column 21.&lt;BR /&gt;NOTE: Invalid numeric data, 'Memorial Medical Center' , at line 19877 column 21.&lt;BR /&gt;NOTE: Invalid numeric data, 'New England Cancer Specialists' , at line 19878 column 21.&lt;BR /&gt;NOTE: Invalid numeric data, 'Canton Mercy Medical Center' , at line 19881 column 21.&lt;BR /&gt;NOTE: Invalid numeric data, 'Park Ridge Health' , at line 19881 column 66.&lt;BR /&gt;NOTE: Invalid numeric data, 'Akron General Medical Center' , at line 19882 column 28.&lt;BR /&gt;NOTE: Invalid numeric data, 'St. Mary Medical Center' , at line 19883 column 25.&lt;BR /&gt;NOTE: Invalid numeric data, 'St. Luke's Hospital of Kansas City' , at line 19884 column 25.&lt;BR /&gt;NOTE: Invalid numeric data, 'Anchorage Radiation Therapy Center' , at line 19885 column 25.&lt;BR /&gt;NOTE: Invalid numeric data, 'St. Vincent's Healthcare' , at line 19886 column 25.&lt;BR /&gt;NOTE: Invalid numeric data, 'St. Jude Medical Center' , at line 19887 column 25.&lt;BR /&gt;NOTE: Invalid numeric data, 'The Presbyterian Hospital (Novant Health)' , at line 19888 column&lt;BR /&gt;25.&lt;BR /&gt;NOTE: Invalid numeric data, 'Berkshire Medical Center' , at line 19889 column 25.&lt;BR /&gt;record_id=1044 consent=Yes future_research=Yes city_name=Wenatchee state2_74c=WA&lt;BR /&gt;zipcode=98801-1077 institution=Wenatchee Valley (Confluence) clinician=. clinician_canton=.&lt;BR /&gt;clinician_parkridge=. clinician_wenatchee=Katherine Kemble, DNP, FNP-C, AOCNP, ARNP&lt;BR /&gt;clinician_akron=. clinician_northshore=. clinician_berkshire=. clinician_legacy=.&lt;BR /&gt;clinician_joliet=. clinician_aultman=. clinician_stcloud=. clinician_parkview=.&lt;BR /&gt;clinician_stmary=. clinician_unitypoint=. clinician_spartanburg=. clinician_promedica=.&lt;BR /&gt;clinician_sclhs=. clinician_einstein=. clinician_stlukes=. clinician_southgeorgia=.&lt;BR /&gt;clinician_augusta=. clinician_anchorage=. clinician_hennepin=. clinician_sanford=.&lt;BR /&gt;clinician_wheaton=. clinician_oregon=. clinician_essentia=. clinician_memorialmedctr=.&lt;BR /&gt;clinician_newengland=. new_id=. gender=Male transgender=. transgender_2=. reassignment=.&lt;BR /&gt;sex_reasstxt= sexreass_txttime=. dob=1945-10-06 hispanic=No race___1=Checked&lt;BR /&gt;race___2=Unchecked race___3=Unchecked race___4=Unchecked race___5=Unchecked race___6=Unchecked&lt;BR /&gt;educat=4-year college graduate income=$75,000 to $99,999 mar_stat=Married employ=Retired&lt;BR /&gt;state=. can_type=Prostate can_stage=Don't know date_dx=10-2013 txt_type___1=Checked&lt;BR /&gt;txt_type___2=Unchecked txt_type___3=Checked txt_type___4=Unchecked txt_type___5=Unchecked&lt;BR /&gt;txt_other= hormone=No, I have not or will not be receiving hormone therapy for this cancer.&lt;BR /&gt;pain=1 fatigue=4 sleep_disturbance=5 Extreme Concerns memory_concentration=4&lt;BR /&gt;nausea_vomiting=0 No Concerns poor_appetitie=0 No Concerns trouble_swallowing=1&lt;BR /&gt;dentalmouth_problems=2 weight_changes=5 Extreme Concerns balance=2 strength=2 neuropathy=4&lt;BR /&gt;lymphedema=3 bone_health=3 hairskin_issues=4 body_changes=4 bow_bladder=5 Extreme Concerns&lt;BR /&gt;hot_flashes=2 sexual_issues=3 fertility_issues=0 No Concerns house=2 family=. talk_cancer=3&lt;BR /&gt;return_work=0 (no concerns) health_insurance=0 (no concerns) financial_concerns=4&lt;BR /&gt;debt_medbills=1 normal=3 managing_emotions=5 (extreme concerns) coping=2 uncertainty=4&lt;BR /&gt;fear_recurrence=4 stress_management=4 isolation=3 intimacy=3 gratitude=4 wellbeing=.&lt;BR /&gt;relationship=3 supp_services=3 counseling=3 genetic_counseling=3 confidence_physical=2 q19=2&lt;BR /&gt;q20=3 q21=. q22=3 q23=3 q24=3 q25=3 primary_care=None oncology=None other_specialty=2-3 times&lt;BR /&gt;mental_health=None hospital_inpatient=None hospital_outpatient=1 time emergency_room=None&lt;BR /&gt;urgent_care=None other_specify=. provider_other= delay_care___1=Unchecked&lt;BR /&gt;delay_care___2=Unchecked delay_care___3=Unchecked delay_care___4=Unchecked&lt;BR /&gt;delay_care___5=Checked delay_care___6=Unchecked delay_care___7=Unchecked&lt;BR /&gt;delay_care___8=Unchecked delay_care___9=Unchecked delay_care___10=Unchecked&lt;BR /&gt;delay_care___11=Unchecked delay_care___12=Unchecked delay_care___13=Unchecked&lt;BR /&gt;delay_care___14=Unchecked delay_care___15=Unchecked delay_care___16=Unchecked&lt;BR /&gt;delay_care___17=Unchecked delaycare_otherreason= previsit_baseline_su_v_0=Complete&lt;BR /&gt;survey_compdate=2016-04-22 model=. _ERROR_=1 _N_=1&lt;BR /&gt;NOTE: Invalid numeric data, 'GreaterBaltimoreMedicalCenter' , at line 19861 column 20.&lt;BR /&gt;NOTE: Invalid numeric data, 'Wenatchee Valley(confluence)' , at line 19862 column 21.&lt;BR /&gt;NOTE: Invalid numeric data, 'UnityPointHealth' , at line 19862 column 67.&lt;BR /&gt;NOTE: Invalid numeric data, 'Northshore' , at line 19863 column 24.&lt;BR /&gt;NOTE: Invalid numeric data, 'SCLHS(Saint Joseph Hospital)' , at line 19863 column 52.&lt;BR /&gt;NOTE: Invalid numeric data, 'Coborn Cancer Center(St Cloud Hospital)' , at line 19864 column&lt;BR /&gt;21.&lt;BR /&gt;NOTE: Invalid numeric data, 'PromedicaResearchInstitute' , at line 19865 column 21.&lt;BR /&gt;NOTE: Invalid numeric data, 'AlbertEinsteinHealthNetwork' , at line 19866 column 21.&lt;BR /&gt;NOTE: Invalid numeric data, 'SouthGeorgiaMedicalCenter' , at line 19867 column 21.&lt;BR /&gt;NOTE: Invalid numeric data, 'Sanford Clinic North' , at line 19867 column 64.&lt;BR /&gt;NOTE: Invalid numeric data, 'WheatonFranciscanHealthcare' , at line 19868 column 24.&lt;BR /&gt;NOTE: Invalid numeric data, 'EssentiaInstituteofRuralHealth' , at line 19869 column 21.&lt;BR /&gt;NOTE: Invalid numeric data, 'Joliet Oncology Hematology Associates' , at line 19871 column 25.&lt;BR /&gt;NOTE: Invalid numeric data, 'Spartanburg Regional Health (Gibbs Cancer Ctr)' , at line 19872&lt;BR /&gt;column 21.&lt;BR /&gt;NOTE: Invalid numeric data, 'Legacy Health' , at line 19873 column 21.&lt;BR /&gt;NOTE: Invalid numeric data, 'Parkview Hospital' , at line 19873 column 52.&lt;BR /&gt;NOTE: Invalid numeric data, 'Aultman Hospital' , at line 19874 column 21.&lt;BR /&gt;NOTE: Invalid numeric data, 'Augusta Health Cancer Center' , at line 19874 column 55.&lt;BR /&gt;NOTE: Invalid numeric data, 'Hennepin County Medical Center' , at line 19875 column 24.&lt;BR /&gt;NOTE: Invalid numeric data, 'Oregon Health &amp;amp; Sciences University' , at line 19876 column 21.&lt;BR /&gt;NOTE: Invalid numeric data, 'Memorial Medical Center' , at line 19877 column 21.&lt;BR /&gt;NOTE: Invalid numeric data, 'New England Cancer Specialists' , at line 19878 column 21.&lt;BR /&gt;NOTE: Invalid numeric data, 'Canton Mercy Medical Center' , at line 19881 column 21.&lt;BR /&gt;NOTE: Invalid numeric data, 'Park Ridge Health' , at line 19881 column 66.&lt;BR /&gt;NOTE: Invalid numeric data, 'Akron General Medical Center' , at line 19882 column 28.&lt;BR /&gt;NOTE: Invalid numeric data, 'St. Mary Medical Center' , at line 19883 column 25.&lt;BR /&gt;NOTE: Invalid numeric data, 'St. Luke's Hospital of Kansas City' , at line 19884 column 25.&lt;BR /&gt;NOTE: Invalid numeric data, 'Anchorage Radiation Therapy Center' , at line 19885 column 25.&lt;BR /&gt;NOTE: Invalid numeric data, 'St. Vincent's Healthcare' , at line 19886 column 25.&lt;BR /&gt;NOTE: Invalid numeric data, 'St. Jude Medical Center' , at line 19887 column 25.&lt;BR /&gt;NOTE: Invalid numeric data, 'The Presbyterian Hospital (Novant Health)' , at line 19888 column&lt;BR /&gt;25.&lt;BR /&gt;NOTE: Invalid numeric data, 'Berkshire Medical Center' , at line 19889 column 25.&lt;BR /&gt;record_id=1043 consent=Yes future_research=Yes city_name=Hopedale state2_74c=OH zipcode=43976&lt;BR /&gt;institution=Canton Mercy Medical Center clinician=. clinician_canton=Joan Edwards, RN, OCN&lt;BR /&gt;clinician_parkridge=. clinician_wenatchee=. clinician_akron=. clinician_northshore=.&lt;BR /&gt;clinician_berkshire=. clinician_legacy=. clinician_joliet=. clinician_aultman=.&lt;BR /&gt;clinician_stcloud=. clinician_parkview=. clinician_stmary=. clinician_unitypoint=.&lt;BR /&gt;clinician_spartanburg=. clinician_promedica=. clinician_sclhs=. clinician_einstein=.&lt;BR /&gt;clinician_stlukes=. clinician_southgeorgia=. clinician_augusta=. clinician_anchorage=.&lt;BR /&gt;clinician_hennepin=. clinician_sanford=. clinician_wheaton=. clinician_oregon=.&lt;BR /&gt;clinician_essentia=. clinician_memorialmedctr=. clinician_newengland=. new_id=. gender=Male&lt;BR /&gt;transgender=. transgender_2=. reassignment=. sex_reasstxt= sexreass_txttime=. dob=1954-12-25&lt;BR /&gt;hispanic=No race___1=Checked race___2=Unchecked race___3=Unchecked race___4=Unchecked&lt;BR /&gt;race___5=Unchecked race___6=Unchecked educat=High school graduate or GED&lt;BR /&gt;income=Less than $25,000 mar_stat=Divorced employ=Not working state=OH&lt;BR /&gt;can_type=Colorectal (including **bleep**) can_stage=Don't know date_dx=07-2015&lt;BR /&gt;txt_type___1=Unchecked txt_type___2=Checked txt_type___3=Checked txt_type___4=Unchecked&lt;BR /&gt;txt_type___5=Unchecked txt_other=&lt;BR /&gt;hormone=No, I have not or will not be receiving hormone therapy for this cancer.&lt;BR /&gt;pain=0 No Concerns fatigue=0 No Concerns sleep_disturbance=0 No Concerns&lt;BR /&gt;memory_concentration=0 No Concerns nausea_vomiting=0 No Concerns poor_appetitie=0 No Concerns&lt;BR /&gt;trouble_swallowing=0 No Concerns dentalmouth_problems=0 No Concerns&lt;BR /&gt;weight_changes=0 No Concerns balance=0 No Concerns strength=0 No Concerns&lt;BR /&gt;neuropathy=0 No Concerns lymphedema=0 No Concerns bone_health=0 No Concerns&lt;BR /&gt;hairskin_issues=0 No Concerns body_changes=0 No Concerns bow_bladder=0 No Concerns&lt;BR /&gt;hot_flashes=0 No Concerns sexual_issues=0 No Concerns fertility_issues=. house=0 (no concerns)&lt;BR /&gt;family=0 (no concerns) talk_cancer=0 (no concerns) return_work=5 (extreme concerns)&lt;BR /&gt;health_insurance=5 (extreme concerns) financial_concerns=5 (extreme concerns)&lt;BR /&gt;debt_medbills=5 (extreme concerns) normal=. managing_emotions=0 (no concerns)&lt;BR /&gt;coping=0 (no concerns) uncertainty=0 (no concerns) fear_recurrence=0 (no concerns)&lt;BR /&gt;stress_management=0 (no concerns) isolation=0 (no concerns) intimacy=0 (no concerns)&lt;BR /&gt;gratitude=0 (no concerns) wellbeing=0 (no concerns) relationship=0 (no concerns)&lt;BR /&gt;supp_services=. counseling=0 (no concerns) genetic_counseling=0 (no concerns)&lt;BR /&gt;confidence_physical=3 q19=3 q20=4 q21=3 q22=3 q23=3 q24=3 q25=5 Totally confident&lt;BR /&gt;primary_care=2-3 times oncology=. other_specialty=. mental_health=. hospital_inpatient=.&lt;BR /&gt;hospital_outpatient=. emergency_room=. urgent_care=. other_specify=. provider_other=&lt;BR /&gt;delay_care___1=Checked delay_care___2=Unchecked delay_care___3=Unchecked&lt;BR /&gt;delay_care___4=Unchecked delay_care___5=Unchecked delay_care___6=Unchecked&lt;BR /&gt;delay_care___7=Unchecked delay_care___8=Unchecked delay_care___9=Unchecked&lt;BR /&gt;delay_care___10=Unchecked delay_care___11=Unchecked delay_care___12=Unchecked&lt;BR /&gt;delay_care___13=Unchecked delay_care___14=Unchecked delay_care___15=Unchecked&lt;BR /&gt;delay_care___16=Unchecked delay_care___17=Unchecked delaycare_otherreason=&lt;BR /&gt;previsit_baseline_su_v_0=Complete survey_compdate=2016-05-11 model=. _ERROR_=1 _N_=2&lt;BR /&gt;NOTE: Invalid numeric data, 'GreaterBaltimoreMedicalCenter' , at line 19861 column 20.&lt;BR /&gt;NOTE: Invalid numeric data, 'Wenatchee Valley(confluence)' , at line 19862 column 21.&lt;BR /&gt;NOTE: Invalid numeric data, 'UnityPointHealth' , at line 19862 column 67.&lt;BR /&gt;NOTE: Invalid numeric data, 'Northshore' , at line 19863 column 24.&lt;BR /&gt;NOTE: Invalid numeric data, 'SCLHS(Saint Joseph Hospital)' , at line 19863 column 52.&lt;BR /&gt;NOTE: Invalid numeric data, 'Coborn Cancer Center(St Cloud Hospital)' , at line 19864 column&lt;BR /&gt;21.&lt;BR /&gt;NOTE: Invalid numeric data, 'PromedicaResearchInstitute' , at line 19865 column 21.&lt;BR /&gt;NOTE: Invalid numeric data, 'AlbertEinsteinHealthNetwork' , at line 19866 column 21.&lt;BR /&gt;NOTE: Invalid numeric data, 'SouthGeorgiaMedicalCenter' , at line 19867 column 21.&lt;BR /&gt;NOTE: Invalid numeric data, 'Sanford Clinic North' , at line 19867 column 64.&lt;BR /&gt;NOTE: Invalid numeric data, 'WheatonFranciscanHealthcare' , at line 19868 column 24.&lt;BR /&gt;NOTE: Invalid numeric data, 'EssentiaInstituteofRuralHealth' , at line 19869 column 21.&lt;BR /&gt;NOTE: Invalid numeric data, 'Joliet Oncology Hematology Associates' , at line 19871 column 25.&lt;BR /&gt;NOTE: Invalid numeric data, 'Spartanburg Regional Health (Gibbs Cancer Ctr)' , at line 19872&lt;BR /&gt;column 21.&lt;BR /&gt;NOTE: Invalid numeric data, 'Legacy Health' , at line 19873 column 21.&lt;BR /&gt;NOTE: Invalid numeric data, 'Parkview Hospital' , at line 19873 column 52.&lt;BR /&gt;NOTE: Invalid numeric data, 'Aultman Hospital' , at line 19874 column 21.&lt;BR /&gt;NOTE: Invalid numeric data, 'Augusta Health Cancer Center' , at line 19874 column 55.&lt;BR /&gt;NOTE: Invalid numeric data, 'Hennepin County Medical Center' , at line 19875 column 24.&lt;BR /&gt;NOTE: Invalid numeric data, 'Oregon Health &amp;amp; Sciences University' , at line 19876 column 21.&lt;BR /&gt;NOTE: Invalid numeric data, 'Memorial Medical Center' , at line 19877 column 21.&lt;BR /&gt;NOTE: Invalid numeric data, 'New England Cancer Specialists' , at line 19878 column 21.&lt;BR /&gt;NOTE: Invalid numeric data, 'Canton Mercy Medical Center' , at line 19881 column 21.&lt;BR /&gt;NOTE: Invalid numeric data, 'Park Ridge Health' , at line 19881 column 66.&lt;BR /&gt;NOTE: Invalid numeric data, 'Akron General Medical Center' , at line 19882 column 28.&lt;BR /&gt;NOTE: Invalid numeric data, 'St. Mary Medical Center' , at line 19883 column 25.&lt;BR /&gt;NOTE: Invalid numeric data, 'St. Luke's Hospital of Kansas City' , at line 19884 column 25.&lt;BR /&gt;NOTE: Invalid numeric data, 'Anchorage Radiation Therapy Center' , at line 19885 column 25.&lt;BR /&gt;NOTE: Invalid numeric data, 'St. Vincent's Healthcare' , at line 19886 column 25.&lt;BR /&gt;NOTE: Invalid numeric data, 'St. Jude Medical Center' , at line 19887 column 25.&lt;BR /&gt;NOTE: Invalid numeric data, 'The Presbyterian Hospital (Novant Health)' , at line 19888 column&lt;BR /&gt;25.&lt;BR /&gt;NOTE: Invalid numeric data, 'Berkshire Medical Center' , at line 19889 column 25.&lt;BR /&gt;record_id=1042 consent=Yes future_research=Yes city_name= state2_74c=. zipcode=&lt;BR /&gt;institution=Canton Mercy Medical Center clinician=.&lt;BR /&gt;clinician_canton=Jane Westfall, RN, BSN, OSN clinician_parkridge=. clinician_wenatchee=.&lt;BR /&gt;clinician_akron=. clinician_northshore=. clinician_berkshire=. clinician_legacy=.&lt;BR /&gt;clinician_joliet=. clinician_aultman=. clinician_stcloud=. clinician_parkview=.&lt;BR /&gt;clinician_stmary=. clinician_unitypoint=. clinician_spartanburg=. clinician_promedica=.&lt;BR /&gt;clinician_sclhs=. clinician_einstein=. clinician_stlukes=. clinician_southgeorgia=.&lt;BR /&gt;clinician_augusta=. clinician_anchorage=. clinician_hennepin=. clinician_sanford=.&lt;BR /&gt;clinician_wheaton=. clinician_oregon=. clinician_essentia=. clinician_memorialmedctr=.&lt;BR /&gt;clinician_newengland=. new_id=. gender=Female transgender=. transgender_2=. reassignment=.&lt;BR /&gt;sex_reasstxt= sexreass_txttime=. dob=1975-08-07 hispanic=No race___1=Checked&lt;BR /&gt;race___2=Unchecked race___3=Unchecked race___4=Unchecked race___5=Unchecked race___6=Unchecked&lt;BR /&gt;educat=Some college or 2-year degree income=$100,000 or more mar_stat=Married&lt;BR /&gt;employ=Working- as a paid employee state=OH can_type=Breast can_stage=Stage 0 date_dx=11-2015&lt;BR /&gt;txt_type___1=Checked txt_type___2=Unchecked txt_type___3=Unchecked txt_type___4=Unchecked&lt;BR /&gt;txt_type___5=Checked txt_other=Tamoxifen hormone=Yes, I am receiving hormone therapy. pain=2&lt;BR /&gt;fatigue=2 sleep_disturbance=3 memory_concentration=1 nausea_vomiting=1&lt;BR /&gt;poor_appetitie=0 No Concerns trouble_swallowing=0 No Concerns&lt;BR /&gt;dentalmouth_problems=0 No Concerns weight_changes=1 balance=0 No Concerns strength=3&lt;BR /&gt;neuropathy=0 No Concerns lymphedema=2 bone_health=2 hairskin_issues=2 body_changes=2&lt;BR /&gt;bow_bladder=0 No Concerns hot_flashes=4 sexual_issues=1 fertility_issues=0 No Concerns house=1&lt;BR /&gt;family=1 talk_cancer=1 return_work=2 health_insurance=1 financial_concerns=0 (no concerns)&lt;BR /&gt;debt_medbills=0 (no concerns) normal=3 managing_emotions=2 coping=1 uncertainty=3&lt;BR /&gt;fear_recurrence=4 stress_management=2 isolation=0 (no concerns) intimacy=1&lt;BR /&gt;gratitude=0 (no concerns) wellbeing=1 relationship=0 (no concerns) supp_services=1&lt;BR /&gt;counseling=0 (no concerns) genetic_counseling=0 (no concerns) confidence_physical=4 q19=3&lt;BR /&gt;q20=5 Totally confident q21=3 q22=1 Not at all confident q23=5 Totally confident&lt;BR /&gt;q24=5 Totally confident q25=5 Totally confident primary_care=None oncology=2-3 times&lt;BR /&gt;other_specialty=8 or more times mental_health=None hospital_inpatient=1 time&lt;BR /&gt;hospital_outpatient=None emergency_room=None urgent_care=None other_specify=. provider_other=&lt;BR /&gt;delay_care___1=Checked delay_care___2=Unchecked delay_care___3=Unchecked&lt;BR /&gt;delay_care___4=Unchecked delay_care___5=Unchecked delay_care___6=Unchecked&lt;BR /&gt;delay_care___7=Unchecked delay_care___8=Unchecked delay_care___9=Unchecked&lt;BR /&gt;delay_care___10=Unchecked delay_care___11=Unchecked delay_care___12=Unchecked&lt;BR /&gt;delay_care___13=Unchecked delay_care___14=Unchecked delay_care___15=Unchecked&lt;BR /&gt;delay_care___16=Unchecked delay_care___17=Unchecked delaycare_otherreason=&lt;BR /&gt;previsit_baseline_su_v_0=Complete survey_compdate=2016-05-05 model=. _ERROR_=1 _N_=3&lt;BR /&gt;NOTE: Invalid numeric data, 'GreaterBaltimoreMedicalCenter' , at line 19861 column 20.&lt;BR /&gt;NOTE: Invalid numeric data, 'Wenatchee Valley(confluence)' , at line 19862 column 21.&lt;BR /&gt;NOTE: Invalid numeric data, 'UnityPointHealth' , at line 19862 column 67.&lt;BR /&gt;NOTE: Invalid numeric data, 'Northshore' , at line 19863 column 24.&lt;BR /&gt;NOTE: Over 100 NOTES, additional NOTES suppressed.&lt;BR /&gt;NOTE: Invalid numeric data, 'SCLHS(Saint Joseph Hospital)' , at line 19863 column 52.&lt;BR /&gt;record_id=1041 consent=Yes future_research=Yes city_name=Portland state2_74c=ME zipcode=04103&lt;BR /&gt;institution=New England Cancer Specialists clinician=. clinician_canton=. clinician_parkridge=.&lt;BR /&gt;clinician_wenatchee=. clinician_akron=. clinician_northshore=. clinician_berkshire=.&lt;BR /&gt;clinician_legacy=. clinician_joliet=. clinician_aultman=. clinician_stcloud=.&lt;BR /&gt;clinician_parkview=. clinician_stmary=. clinician_unitypoint=. clinician_spartanburg=.&lt;BR /&gt;clinician_promedica=. clinician_sclhs=. clinician_einstein=. clinician_stlukes=.&lt;BR /&gt;clinician_southgeorgia=. clinician_augusta=. clinician_anchorage=. clinician_hennepin=.&lt;BR /&gt;clinician_sanford=. clinician_wheaton=. clinician_oregon=. clinician_essentia=.&lt;BR /&gt;clinician_memorialmedctr=. clinician_newengland=Dixie Knoll, FNP new_id=. gender=Female&lt;BR /&gt;transgender=. transgender_2=. reassignment=. sex_reasstxt= sexreass_txttime=. dob=1972-07-17&lt;BR /&gt;hispanic=No race___1=Checked race___2=Unchecked race___3=Unchecked race___4=Unchecked&lt;BR /&gt;race___5=Unchecked race___6=Unchecked educat=Some college or 2-year degree&lt;BR /&gt;income=$25,000 to $49,999 mar_stat=Divorced employ=Working- as a paid employee state=ME&lt;BR /&gt;can_type=Breast can_stage=Stage 1 date_dx=05-2015 txt_type___1=Checked txt_type___2=Unchecked&lt;BR /&gt;txt_type___3=Checked txt_type___4=Unchecked txt_type___5=Unchecked txt_other=&lt;BR /&gt;hormone=Yes, I am receiving hormone therapy. pain=2 fatigue=4 sleep_disturbance=4&lt;BR /&gt;memory_concentration=. nausea_vomiting=3 poor_appetitie=0 No Concerns&lt;BR /&gt;trouble_swallowing=0 No Concerns dentalmouth_problems=0 No Concerns weight_changes=3&lt;BR /&gt;balance=0 No Concerns strength=0 No Concerns neuropathy=0 No Concerns lymphedema=0 No Concerns&lt;BR /&gt;bone_health=1 hairskin_issues=0 No Concerns body_changes=0 No Concerns&lt;BR /&gt;bow_bladder=0 No Concerns hot_flashes=5 Extreme Concerns sexual_issues=0 No Concerns&lt;BR /&gt;fertility_issues=0 No Concerns house=0 (no concerns) family=0 (no concerns)&lt;BR /&gt;talk_cancer=0 (no concerns) return_work=0 (no concerns) health_insurance=0 (no concerns)&lt;BR /&gt;financial_concerns=3 debt_medbills=3 normal=0 (no concerns) managing_emotions=0 (no concerns)&lt;BR /&gt;coping=0 (no concerns) uncertainty=5 (extreme concerns) fear_recurrence=5 (extreme concerns)&lt;BR /&gt;stress_management=0 (no concerns) isolation=0 (no concerns) intimacy=0 (no concerns)&lt;BR /&gt;gratitude=0 (no concerns) wellbeing=0 (no concerns) relationship=0 (no concerns)&lt;BR /&gt;supp_services=0 (no concerns) counseling=0 (no concerns) genetic_counseling=0 (no concerns)&lt;BR /&gt;confidence_physical=5 Totally confident q19=4 q20=5 Totally confident q21=4 q22=4&lt;BR /&gt;q23=5 Totally confident q24=5 Totally confident q25=5 Totally confident primary_care=None&lt;BR /&gt;oncology=6-7 times other_specialty=None mental_health=None hospital_inpatient=None&lt;BR /&gt;hospital_outpatient=None emergency_room=None urgent_care=None other_specify=. provider_other=&lt;BR /&gt;delay_care___1=Checked delay_care___2=Unchecked delay_care___3=Unchecked&lt;BR /&gt;delay_care___4=Unchecked delay_care___5=Unchecked delay_care___6=Unchecked&lt;BR /&gt;delay_care___7=Unchecked delay_care___8=Unchecked delay_care___9=Unchecked&lt;BR /&gt;delay_care___10=Unchecked delay_care___11=Unchecked delay_care___12=Unchecked&lt;BR /&gt;delay_care___13=Unchecked delay_care___14=Unchecked delay_care___15=Unchecked&lt;BR /&gt;delay_care___16=Unchecked delay_care___17=Unchecked delaycare_otherreason=&lt;BR /&gt;previsit_baseline_su_v_0=Complete survey_compdate=2016-05-02 model=. _ERROR_=1 _N_=4&lt;BR /&gt;record_id=1040 consent=Yes future_research=Yes city_name=Gorham state2_74c=ME zipcode=04038&lt;BR /&gt;institution=New England Cancer Specialists clinician=. clinician_canton=. clinician_parkridge=.&lt;BR /&gt;clinician_wenatchee=. clinician_akron=. clinician_northshore=. clinician_berkshire=.&lt;BR /&gt;clinician_legacy=. clinician_joliet=. clinician_aultman=. clinician_stcloud=.&lt;BR /&gt;clinician_parkview=. clinician_stmary=. clinician_unitypoint=. clinician_spartanburg=.&lt;BR /&gt;clinician_promedica=. clinician_sclhs=. clinician_einstein=. clinician_stlukes=.&lt;BR /&gt;clinician_southgeorgia=. clinician_augusta=. clinician_anchorage=. clinician_hennepin=.&lt;BR /&gt;clinician_sanford=. clinician_wheaton=. clinician_oregon=. clinician_essentia=.&lt;BR /&gt;clinician_memorialmedctr=. clinician_newengland=Dixie Knoll, FNP new_id=. gender=Female&lt;BR /&gt;transgender=. transgender_2=. reassignment=. sex_reasstxt= sexreass_txttime=. dob=1984-10-04&lt;BR /&gt;hispanic=No race___1=Checked race___2=Unchecked race___3=Unchecked race___4=Unchecked&lt;BR /&gt;race___5=Unchecked race___6=Unchecked educat=High school graduate or GED income=Don't know&lt;BR /&gt;mar_stat=Married employ=Working- as a paid employee state=ME can_type=Breast can_stage=Stage 2&lt;BR /&gt;date_dx=06-2015 txt_type___1=Checked txt_type___2=Checked txt_type___3=Checked&lt;BR /&gt;txt_type___4=Unchecked txt_type___5=Unchecked txt_other=&lt;BR /&gt;hormone=No, I have not or will not be receiving hormone therapy for this cancer. pain=2&lt;BR /&gt;fatigue=3 sleep_disturbance=3 memory_concentration=0 No Concerns nausea_vomiting=0 No Concerns&lt;BR /&gt;poor_appetitie=0 No Concerns trouble_swallowing=1 dentalmouth_problems=0 No Concerns&lt;BR /&gt;weight_changes=0 No Concerns balance=0 No Concerns strength=0 No Concerns neuropathy=1&lt;BR /&gt;lymphedema=0 No Concerns bone_health=0 No Concerns hairskin_issues=0 No Concerns&lt;BR /&gt;body_changes=0 No Concerns bow_bladder=0 No Concerns hot_flashes=2 sexual_issues=0 No Concerns&lt;BR /&gt;fertility_issues=4 house=1 family=0 (no concerns) talk_cancer=0 (no concerns) return_work=1&lt;BR /&gt;health_insurance=4 financial_concerns=4 debt_medbills=4 normal=1 managing_emotions=1&lt;BR /&gt;coping=0 (no concerns) uncertainty=0 (no concerns) fear_recurrence=2 stress_management=2&lt;BR /&gt;isolation=1 intimacy=1 gratitude=0 (no concerns) wellbeing=0 (no concerns) relationship=1&lt;BR /&gt;supp_services=0 (no concerns) counseling=0 (no concerns) genetic_counseling=0 (no concerns)&lt;BR /&gt;confidence_physical=4 q19=3 q20=4 q21=2 q22=3 q23=4 q24=3 q25=2 primary_care=None&lt;BR /&gt;oncology=1 time other_specialty=1 time mental_health=None hospital_inpatient=None&lt;BR /&gt;hospital_outpatient=None emergency_room=None urgent_care=None other_specify=None&lt;BR /&gt;provider_other= delay_care___1=Checked delay_care___2=Unchecked delay_care___3=Unchecked&lt;BR /&gt;delay_care___4=Unchecked delay_care___5=Unchecked delay_care___6=Unchecked&lt;BR /&gt;delay_care___7=Unchecked delay_care___8=Unchecked delay_care___9=Unchecked&lt;BR /&gt;delay_care___10=Unchecked delay_care___11=Unchecked delay_care___12=Unchecked&lt;BR /&gt;delay_care___13=Unchecked delay_care___14=Unchecked delay_care___15=Unchecked&lt;BR /&gt;delay_care___16=Unchecked delay_care___17=Unchecked delaycare_otherreason=&lt;BR /&gt;previsit_baseline_su_v_0=Complete survey_compdate=2016-05-03 model=. _ERROR_=1 _N_=5&lt;BR /&gt;record_id=1039 consent=Yes future_research=Yes city_name=Canton state2_74c=OH zipcode=44707&lt;BR /&gt;institution=Canton Mercy Medical Center clinician=.&lt;BR /&gt;clinician_canton=Jane Westfall, RN, BSN, OSN clinician_parkridge=. clinician_wenatchee=.&lt;BR /&gt;clinician_akron=. clinician_northshore=. clinician_berkshire=. clinician_legacy=.&lt;BR /&gt;clinician_joliet=. clinician_aultman=. clinician_stcloud=. clinician_parkview=.&lt;BR /&gt;clinician_stmary=. clinician_unitypoint=. clinician_spartanburg=. clinician_promedica=.&lt;BR /&gt;clinician_sclhs=. clinician_einstein=. clinician_stlukes=. clinician_southgeorgia=.&lt;BR /&gt;clinician_augusta=. clinician_anchorage=. clinician_hennepin=. clinician_sanford=.&lt;BR /&gt;clinician_wheaton=. clinician_oregon=. clinician_essentia=. clinician_memorialmedctr=.&lt;BR /&gt;clinician_newengland=. new_id=. gender=Female transgender=. transgender_2=. reassignment=.&lt;BR /&gt;sex_reasstxt= sexreass_txttime=. dob=1942-06-14 hispanic=No race___1=Checked&lt;BR /&gt;race___2=Unchecked race___3=Unchecked race___4=Unchecked race___5=Unchecked race___6=Unchecked&lt;BR /&gt;educat=High school graduate or GED income=Less than $25,000 mar_stat=Divorced employ=Retired&lt;BR /&gt;state=OH can_type=Breast can_stage=Stage 1 date_dx=07-2015 txt_type___1=Checked&lt;BR /&gt;txt_type___2=Unchecked txt_type___3=Unchecked txt_type___4=Unchecked txt_type___5=Unchecked&lt;BR /&gt;txt_other= hormone=Yes, I am receiving hormone therapy. pain=0 No Concerns fatigue=1&lt;BR /&gt;sleep_disturbance=. memory_concentration=2 nausea_vomiting=0 No Concerns&lt;BR /&gt;poor_appetitie=0 No Concerns trouble_swallowing=0 No Concerns&lt;BR /&gt;dentalmouth_problems=0 No Concerns weight_changes=1 balance=0 No Concerns strength=2&lt;BR /&gt;neuropathy=. lymphedema=1 bone_health=0 No Concerns hairskin_issues=1&lt;BR /&gt;body_changes=0 No Concerns bow_bladder=0 No Concerns hot_flashes=0 No Concerns&lt;BR /&gt;sexual_issues=0 No Concerns fertility_issues=0 No Concerns house=0 (no concerns)&lt;BR /&gt;family=0 (no concerns) talk_cancer=0 (no concerns) return_work=0 (no concerns)&lt;BR /&gt;health_insurance=0 (no concerns) financial_concerns=0 (no concerns)&lt;BR /&gt;debt_medbills=0 (no concerns) normal=0 (no concerns) managing_emotions=1 coping=0 (no concerns)&lt;BR /&gt;uncertainty=0 (no concerns) fear_recurrence=2 stress_management=0 (no concerns)&lt;BR /&gt;isolation=0 (no concerns) intimacy=0 (no concerns) gratitude=0 (no concerns)&lt;BR /&gt;wellbeing=0 (no concerns) relationship=0 (no concerns) supp_services=0 (no concerns)&lt;BR /&gt;counseling=0 (no concerns) genetic_counseling=2 confidence_physical=5 Totally confident&lt;BR /&gt;q19=5 Totally confident q20=5 Totally confident q21=3 q22=3 q23=5 Totally confident q24=4 q25=3&lt;BR /&gt;primary_care=None oncology=2-3 times other_specialty=None mental_health=None&lt;BR /&gt;hospital_inpatient=None hospital_outpatient=None emergency_room=None urgent_care=None&lt;BR /&gt;other_specify=. provider_other= delay_care___1=Checked delay_care___2=Unchecked&lt;BR /&gt;delay_care___3=Unchecked delay_care___4=Unchecked delay_care___5=Unchecked&lt;BR /&gt;delay_care___6=Unchecked delay_care___7=Unchecked delay_care___8=Unchecked&lt;BR /&gt;delay_care___9=Unchecked delay_care___10=Unchecked delay_care___11=Unchecked&lt;BR /&gt;delay_care___12=Unchecked delay_care___13=Unchecked delay_care___14=Unchecked&lt;BR /&gt;delay_care___15=Unchecked delay_care___16=Unchecked delay_care___17=Unchecked&lt;BR /&gt;delaycare_otherreason= previsit_baseline_su_v_0=Complete survey_compdate=2016-04-26 model=.&lt;BR /&gt;_ERROR_=1 _N_=6&lt;BR /&gt;record_id=1038 consent=Yes future_research=Yes city_name=Pillager state2_74c=MN zipcode=56473&lt;BR /&gt;institution=Essentia Institute of Rural Health clinician=. clinician_canton=.&lt;BR /&gt;clinician_parkridge=. clinician_wenatchee=. clinician_akron=. clinician_northshore=.&lt;BR /&gt;clinician_berkshire=. clinician_legacy=. clinician_joliet=. clinician_aultman=.&lt;BR /&gt;clinician_stcloud=. clinician_parkview=. clinician_stmary=. clinician_unitypoint=.&lt;BR /&gt;clinician_spartanburg=. clinician_promedica=. clinician_sclhs=. clinician_einstein=.&lt;BR /&gt;clinician_stlukes=. clinician_southgeorgia=. clinician_augusta=. clinician_anchorage=.&lt;BR /&gt;clinician_hennepin=. clinician_sanford=. clinician_wheaton=. clinician_oregon=.&lt;BR /&gt;clinician_essentia=Jessica Nybakken, CNP clinician_memorialmedctr=. clinician_newengland=.&lt;BR /&gt;new_id=. gender=Female transgender=. transgender_2=. reassignment=. sex_reasstxt=&lt;BR /&gt;sexreass_txttime=. dob=1945-10-19 hispanic=No race___1=Checked race___2=Unchecked&lt;BR /&gt;race___3=Unchecked race___4=Unchecked race___5=Unchecked race___6=Unchecked&lt;BR /&gt;educat=Some college or 2-year degree income=Don't know mar_stat=Married employ=Retired state=MN&lt;BR /&gt;can_type=Breast can_stage=Stage 1 date_dx=08-2015 txt_type___1=Checked txt_type___2=Unchecked&lt;BR /&gt;txt_type___3=Checked txt_type___4=Unchecked txt_type___5=Unchecked txt_other=&lt;BR /&gt;hormone=Yes, I completed hormone therapy. pain=1 fatigue=1 sleep_disturbance=4&lt;BR /&gt;memory_concentration=1 nausea_vomiting=0 No Concerns poor_appetitie=0 No Concerns&lt;BR /&gt;trouble_swallowing=0 No Concerns dentalmouth_problems=0 No Concerns&lt;BR /&gt;weight_changes=0 No Concerns balance=0 No Concerns strength=0 No Concerns&lt;BR /&gt;neuropathy=0 No Concerns lymphedema=0 No Concerns bone_health=3 hairskin_issues=0 No Concerns&lt;BR /&gt;body_changes=1 bow_bladder=0 No Concerns hot_flashes=4 sexual_issues=0 No Concerns&lt;BR /&gt;fertility_issues=0 No Concerns house=0 (no concerns) family=0 (no concerns)&lt;BR /&gt;talk_cancer=0 (no concerns) return_work=0 (no concerns) health_insurance=2 financial_concerns=2&lt;BR /&gt;debt_medbills=2 normal=1 managing_emotions=0 (no concerns) coping=0 (no concerns) uncertainty=1&lt;BR /&gt;fear_recurrence=1 stress_management=0 (no concerns) isolation=1 intimacy=0 (no concerns)&lt;BR /&gt;gratitude=0 (no concerns) wellbeing=0 (no concerns) relationship=0 (no concerns)&lt;BR /&gt;supp_services=0 (no concerns) counseling=0 (no concerns) genetic_counseling=2&lt;BR /&gt;confidence_physical=5 Totally confident q19=5 Totally confident q20=5 Totally confident q21=4&lt;BR /&gt;q22=3 q23=5 Totally confident q24=5 Totally confident q25=3 primary_care=None&lt;BR /&gt;oncology=2-3 times other_specialty=None mental_health=None hospital_inpatient=None&lt;BR /&gt;hospital_outpatient=None emergency_room=None urgent_care=None other_specify=. provider_other=&lt;BR /&gt;delay_care___1=Unchecked delay_care___2=Unchecked delay_care___3=Unchecked&lt;BR /&gt;delay_care___4=Unchecked delay_care___5=Unchecked delay_care___6=Unchecked&lt;BR /&gt;delay_care___7=Unchecked delay_care___8=Unchecked delay_care___9=Unchecked&lt;BR /&gt;delay_care___10=Unchecked delay_care___11=Unchecked delay_care___12=Unchecked&lt;BR /&gt;delay_care___13=Unchecked delay_care___14=Unchecked delay_care___15=Unchecked&lt;BR /&gt;delay_care___16=Unchecked delay_care___17=Unchecked delaycare_otherreason=&lt;BR /&gt;previsit_baseline_su_v_0=Complete survey_compdate=2016-04-26 model=. _ERROR_=1 _N_=7&lt;BR /&gt;record_id=1037 consent=Yes future_research=Yes city_name=Brainerd state2_74c=MN zipcode=56401&lt;BR /&gt;institution=Essentia Institute of Rural Health clinician=. clinician_canton=.&lt;BR /&gt;clinician_parkridge=. clinician_wenatchee=. clinician_akron=. clinician_northshore=.&lt;BR /&gt;clinician_berkshire=. clinician_legacy=. clinician_joliet=. clinician_aultman=.&lt;BR /&gt;clinician_stcloud=. clinician_parkview=. clinician_stmary=. clinician_unitypoint=.&lt;BR /&gt;clinician_spartanburg=. clinician_promedica=. clinician_sclhs=. clinician_einstein=.&lt;BR /&gt;clinician_stlukes=. clinician_southgeorgia=. clinician_augusta=. clinician_anchorage=.&lt;BR /&gt;clinician_hennepin=. clinician_sanford=. clinician_wheaton=. clinician_oregon=.&lt;BR /&gt;clinician_essentia=Jessica Nybakken, CNP clinician_memorialmedctr=. clinician_newengland=.&lt;BR /&gt;new_id=. gender=Female transgender=. transgender_2=. reassignment=. sex_reasstxt=&lt;BR /&gt;sexreass_txttime=. dob=1944-08-05 hispanic=No race___1=Checked race___2=Unchecked&lt;BR /&gt;race___3=Unchecked race___4=Unchecked race___5=Unchecked race___6=Unchecked&lt;BR /&gt;educat=Some college or 2-year degree income=Less than $25,000 mar_stat=Widowed employ=Retired&lt;BR /&gt;state=MN can_type=Breast can_stage=Stage 1 date_dx=10-2015 txt_type___1=Checked&lt;BR /&gt;txt_type___2=Unchecked txt_type___3=Checked txt_type___4=Unchecked txt_type___5=Unchecked&lt;BR /&gt;txt_other= hormone=Yes, I am receiving hormone therapy. pain=2 fatigue=0 No Concerns&lt;BR /&gt;sleep_disturbance=0 No Concerns memory_concentration=0 No Concerns&lt;BR /&gt;nausea_vomiting=0 No Concerns poor_appetitie=0 No Concerns trouble_swallowing=0 No Concerns&lt;BR /&gt;dentalmouth_problems=0 No Concerns weight_changes=0 No Concerns balance=0 No Concerns&lt;BR /&gt;strength=0 No Concerns neuropathy=0 No Concerns lymphedema=1 bone_health=0 No Concerns&lt;BR /&gt;hairskin_issues=0 No Concerns body_changes=1 bow_bladder=0 No Concerns&lt;BR /&gt;hot_flashes=0 No Concerns sexual_issues=0 No Concerns fertility_issues=0 No Concerns&lt;BR /&gt;house=0 (no concerns) family=0 (no concerns) talk_cancer=1 return_work=0 (no concerns)&lt;BR /&gt;health_insurance=0 (no concerns) financial_concerns=1 debt_medbills=0 (no concerns)&lt;BR /&gt;normal=0 (no concerns) managing_emotions=0 (no concerns) coping=0 (no concerns)&lt;BR /&gt;uncertainty=0 (no concerns) fear_recurrence=2 stress_management=0 (no concerns) isolation=1&lt;BR /&gt;intimacy=0 (no concerns) gratitude=0 (no concerns) wellbeing=0 (no concerns)&lt;BR /&gt;relationship=0 (no concerns) supp_services=0 (no concerns) counseling=0 (no concerns)&lt;BR /&gt;genetic_counseling=1 confidence_physical=3 q19=4 q20=5 Totally confident q21=2 q22=2&lt;BR /&gt;q23=5 Totally confident q24=5 Totally confident q25=4 primary_care=1 time oncology=2-3 times&lt;BR /&gt;other_specialty=None mental_health=None hospital_inpatient=None hospital_outpatient=None&lt;BR /&gt;emergency_room=None urgent_care=None other_specify=2-3 times provider_other=Surgeon&lt;BR /&gt;delay_care___1=Checked delay_care___2=Unchecked delay_care___3=Unchecked&lt;BR /&gt;delay_care___4=Unchecked delay_care___5=Unchecked delay_care___6=Unchecked&lt;BR /&gt;delay_care___7=Unchecked delay_care___8=Unchecked delay_care___9=Unchecked&lt;BR /&gt;delay_care___10=Unchecked delay_care___11=Unchecked delay_care___12=Unchecked&lt;BR /&gt;delay_care___13=Unchecked delay_care___14=Unchecked delay_care___15=Unchecked&lt;BR /&gt;delay_care___16=Unchecked delay_care___17=Unchecked delaycare_otherreason=&lt;BR /&gt;previsit_baseline_su_v_0=Complete survey_compdate=2016-04-26 model=. _ERROR_=1 _N_=8&lt;BR /&gt;record_id=1036 consent=Yes future_research=Yes city_name=Louisville state2_74c=OH zipcode=44641&lt;BR /&gt;institution=Canton Mercy Medical Center clinician=.&lt;BR /&gt;clinician_canton=Jane Westfall, RN, BSN, OSN clinician_parkridge=. clinician_wenatchee=.&lt;BR /&gt;clinician_akron=. clinician_northshore=. clinician_berkshire=. clinician_legacy=.&lt;BR /&gt;clinician_joliet=. clinician_aultman=. clinician_stcloud=. clinician_parkview=.&lt;BR /&gt;clinician_stmary=. clinician_unitypoint=. clinician_spartanburg=. clinician_promedica=.&lt;BR /&gt;clinician_sclhs=. clinician_einstein=. clinician_stlukes=. clinician_southgeorgia=.&lt;BR /&gt;clinician_augusta=. clinician_anchorage=. clinician_hennepin=. clinician_sanford=.&lt;BR /&gt;clinician_wheaton=. clinician_oregon=. clinician_essentia=. clinician_memorialmedctr=.&lt;BR /&gt;clinician_newengland=. new_id=. gender=Female transgender=. transgender_2=. reassignment=.&lt;BR /&gt;sex_reasstxt= sexreass_txttime=. dob=1981-01-14 hispanic=No race___1=Checked&lt;BR /&gt;race___2=Unchecked race___3=Unchecked race___4=Unchecked race___5=Unchecked race___6=Unchecked&lt;BR /&gt;educat=Some college or 2-year degree income=$100,000 or more mar_stat=Married&lt;BR /&gt;employ=Working- as a paid employee state=OH can_type=Breast can_stage=Stage 2 date_dx=05-2015&lt;BR /&gt;txt_type___1=Checked txt_type___2=Unchecked txt_type___3=Unchecked txt_type___4=Unchecked&lt;BR /&gt;txt_type___5=Unchecked txt_other= hormone=Yes, I am receiving hormone therapy.&lt;BR /&gt;pain=0 No Concerns fatigue=0 No Concerns sleep_disturbance=0 No Concerns&lt;BR /&gt;memory_concentration=0 No Concerns nausea_vomiting=0 No Concerns poor_appetitie=0 No Concerns&lt;BR /&gt;trouble_swallowing=0 No Concerns dentalmouth_problems=0 No Concerns&lt;BR /&gt;weight_changes=0 No Concerns balance=0 No Concerns strength=0 No Concerns&lt;BR /&gt;neuropathy=0 No Concerns lymphedema=0 No Concerns bone_health=0 No Concerns&lt;BR /&gt;hairskin_issues=0 No Concerns body_changes=0 No Concerns bow_bladder=0 No Concerns&lt;BR /&gt;hot_flashes=0 No Concerns sexual_issues=0 No Concerns fertility_issues=0 No Concerns&lt;BR /&gt;house=0 (no concerns) family=0 (no concerns) talk_cancer=0 (no concerns)&lt;BR /&gt;return_work=0 (no concerns) health_insurance=0 (no concerns) financial_concerns=0 (no concerns)&lt;BR /&gt;debt_medbills=0 (no concerns) normal=0 (no concerns) managing_emotions=0 (no concerns)&lt;BR /&gt;coping=0 (no concerns) uncertainty=0 (no concerns) fear_recurrence=0 (no concerns)&lt;BR /&gt;stress_management=0 (no concerns) isolation=0 (no concerns) intimacy=0 (no concerns)&lt;BR /&gt;gratitude=0 (no concerns) wellbeing=0 (no concerns) relationship=0 (no concerns)&lt;BR /&gt;supp_services=0 (no concerns) counseling=0 (no concerns) genetic_counseling=3&lt;BR /&gt;confidence_physical=5 Totally confident q19=5 Totally confident q20=5 Totally confident&lt;BR /&gt;q21=5 Totally confident q22=5 Totally confident q23=5 Totally confident q24=5 Totally confident&lt;BR /&gt;q25=4 primary_care=None oncology=1 time other_specialty=1 time mental_health=None&lt;BR /&gt;hospital_inpatient=None hospital_outpatient=None emergency_room=None urgent_care=None&lt;BR /&gt;other_specify=None provider_other= delay_care___1=Checked delay_care___2=Unchecked&lt;BR /&gt;delay_care___3=Unchecked delay_care___4=Unchecked delay_care___5=Unchecked&lt;BR /&gt;delay_care___6=Unchecked delay_care___7=Unchecked delay_care___8=Unchecked&lt;BR /&gt;delay_care___9=Unchecked delay_care___10=Unchecked delay_care___11=Unchecked&lt;BR /&gt;delay_care___12=Unchecked delay_care___13=Unchecked delay_care___14=Unchecked&lt;BR /&gt;delay_care___15=Unchecked delay_care___16=Unchecked delay_care___17=Unchecked&lt;BR /&gt;delaycare_otherreason= previsit_baseline_su_v_0=Complete survey_compdate=2016-04-26 model=.&lt;BR /&gt;_ERROR_=1 _N_=9&lt;BR /&gt;record_id=1035 consent=Yes future_research=Yes city_name=Crosslake state2_74c=MN zipcode=56442&lt;BR /&gt;institution=Essentia Institute of Rural Health clinician=. clinician_canton=.&lt;BR /&gt;clinician_parkridge=. clinician_wenatchee=. clinician_akron=. clinician_northshore=.&lt;BR /&gt;clinician_berkshire=. clinician_legacy=. clinician_joliet=. clinician_aultman=.&lt;BR /&gt;clinician_stcloud=. clinician_parkview=. clinician_stmary=. clinician_unitypoint=.&lt;BR /&gt;clinician_spartanburg=. clinician_promedica=. clinician_sclhs=. clinician_einstein=.&lt;BR /&gt;clinician_stlukes=. clinician_southgeorgia=. clinician_augusta=. clinician_anchorage=.&lt;BR /&gt;clinician_hennepin=. clinician_sanford=. clinician_wheaton=. clinician_oregon=.&lt;BR /&gt;clinician_essentia=Jessica Nybakken, CNP clinician_memorialmedctr=. clinician_newengland=.&lt;BR /&gt;new_id=. gender=Female transgender=. transgender_2=. reassignment=. sex_reasstxt=&lt;BR /&gt;sexreass_txttime=. dob=1952-06-12 hispanic=No race___1=Checked race___2=Unchecked&lt;BR /&gt;race___3=Unchecked race___4=Unchecked race___5=Unchecked race___6=Unchecked&lt;BR /&gt;educat=Some college or 2-year degree income=$75,000 to $99,999 mar_stat=Married employ=Retired&lt;BR /&gt;state=MN can_type=Breast can_stage=Stage 2 date_dx=06-2015 txt_type___1=Checked&lt;BR /&gt;txt_type___2=Checked txt_type___3=Checked txt_type___4=Unchecked txt_type___5=Unchecked&lt;BR /&gt;txt_other= hormone=Yes, I am receiving hormone therapy. pain=. fatigue=2&lt;BR /&gt;sleep_disturbance=0 No Concerns memory_concentration=1 nausea_vomiting=0 No Concerns&lt;BR /&gt;poor_appetitie=0 No Concerns trouble_swallowing=0 No Concerns dentalmouth_problems=1&lt;BR /&gt;weight_changes=3 balance=0 No Concerns strength=2 neuropathy=3 lymphedema=1 bone_health=2&lt;BR /&gt;hairskin_issues=4 body_changes=2 bow_bladder=0 No Concerns hot_flashes=0 No Concerns&lt;BR /&gt;sexual_issues=5 Extreme Concerns fertility_issues=0 No Concerns house=0 (no concerns)&lt;BR /&gt;family=0 (no concerns) talk_cancer=3 return_work=0 (no concerns)&lt;BR /&gt;health_insurance=0 (no concerns) financial_concerns=0 (no concerns)&lt;BR /&gt;debt_medbills=0 (no concerns) normal=4 managing_emotions=4 coping=1 uncertainty=1&lt;BR /&gt;fear_recurrence=2 stress_management=3 isolation=4 intimacy=5 (extreme concerns) gratitude=3&lt;BR /&gt;wellbeing=2 relationship=4 supp_services=3 counseling=2 genetic_counseling=0 (no concerns)&lt;BR /&gt;confidence_physical=3 q19=3 q20=3 q21=3 q22=4 q23=3 q24=4 q25=5 Totally confident&lt;BR /&gt;primary_care=None oncology=1 time other_specialty=. mental_health=None hospital_inpatient=None&lt;BR /&gt;hospital_outpatient=None emergency_room=None urgent_care=None other_specify=. provider_other=&lt;BR /&gt;delay_care___1=Unchecked delay_care___2=Unchecked delay_care___3=Unchecked&lt;BR /&gt;delay_care___4=Unchecked delay_care___5=Unchecked delay_care___6=Unchecked&lt;BR /&gt;delay_care___7=Unchecked delay_care___8=Unchecked delay_care___9=Unchecked&lt;BR /&gt;delay_care___10=Unchecked delay_care___11=Unchecked delay_care___12=Unchecked&lt;BR /&gt;delay_care___13=Unchecked delay_care___14=Unchecked delay_care___15=Unchecked&lt;BR /&gt;delay_care___16=Checked delay_care___17=Unchecked delaycare_otherreason=&lt;BR /&gt;previsit_baseline_su_v_0=Complete survey_compdate=2016-04-25 model=. _ERROR_=1 _N_=10&lt;BR /&gt;record_id=1034 consent=Yes future_research=Yes city_name=Baxter state2_74c=MN zipcode=56425&lt;BR /&gt;institution=Essentia Institute of Rural Health clinician=. clinician_canton=.&lt;BR /&gt;clinician_parkridge=. clinician_wenatchee=. clinician_akron=. clinician_northshore=.&lt;BR /&gt;clinician_berkshire=. clinician_legacy=. clinician_joliet=. clinician_aultman=.&lt;BR /&gt;clinician_stcloud=. clinician_parkview=. clinician_stmary=. clinician_unitypoint=.&lt;BR /&gt;clinician_spartanburg=. clinician_promedica=. clinician_sclhs=. clinician_einstein=.&lt;BR /&gt;clinician_stlukes=. clinician_southgeorgia=. clinician_augusta=. clinician_anchorage=.&lt;BR /&gt;clinician_hennepin=. clinician_sanford=. clinician_wheaton=. clinician_oregon=.&lt;BR /&gt;clinician_essentia=Jessica Nybakken, CNP clinician_memorialmedctr=. clinician_newengland=.&lt;BR /&gt;new_id=. gender=Female transgender=. transgender_2=. reassignment=. sex_reasstxt=&lt;BR /&gt;sexreass_txttime=. dob=1971-08-28 hispanic=No race___1=Checked race___2=Unchecked&lt;BR /&gt;race___3=Unchecked race___4=Unchecked race___5=Unchecked race___6=Unchecked&lt;BR /&gt;educat=4-year college graduate income=$50,000 to $74,999 mar_stat=Married&lt;BR /&gt;employ=Working- as a paid employee state=MN can_type=Breast can_stage=Stage 2 date_dx=11-2014&lt;BR /&gt;txt_type___1=Checked txt_type___2=Unchecked txt_type___3=Checked txt_type___4=Unchecked&lt;BR /&gt;txt_type___5=Unchecked txt_other= hormone=Yes, I am receiving hormone therapy. pain=3&lt;BR /&gt;fatigue=2 sleep_disturbance=3 memory_concentration=3 nausea_vomiting=0 No Concerns&lt;BR /&gt;poor_appetitie=0 No Concerns trouble_swallowing=0 No Concerns dentalmouth_problems=1&lt;BR /&gt;weight_changes=0 No Concerns balance=1 strength=3 neuropathy=0 No Concerns&lt;BR /&gt;lymphedema=0 No Concerns bone_health=4 hairskin_issues=0 No Concerns body_changes=1&lt;BR /&gt;bow_bladder=0 No Concerns hot_flashes=0 No Concerns sexual_issues=3&lt;BR /&gt;fertility_issues=0 No Concerns house=0 (no concerns) family=0 (no concerns)&lt;BR /&gt;talk_cancer=0 (no concerns) return_work=0 (no concerns) health_insurance=0 (no concerns)&lt;BR /&gt;financial_concerns=0 (no concerns) debt_medbills=0 (no concerns) normal=0 (no concerns)&lt;BR /&gt;managing_emotions=0 (no concerns) coping=0 (no concerns) uncertainty=0 (no concerns)&lt;BR /&gt;fear_recurrence=0 (no concerns) stress_management=0 (no concerns) isolation=0 (no concerns)&lt;BR /&gt;intimacy=1 gratitude=0 (no concerns) wellbeing=0 (no concerns) relationship=0 (no concerns)&lt;BR /&gt;supp_services=0 (no concerns) counseling=0 (no concerns) genetic_counseling=0 (no concerns)&lt;BR /&gt;confidence_physical=5 Totally confident q19=5 Totally confident q20=5 Totally confident q21=4&lt;BR /&gt;q22=5 Totally confident q23=5 Totally confident q24=5 Totally confident q25=5 Totally confident&lt;BR /&gt;primary_care=1 time oncology=2-3 times other_specialty=None mental_health=None&lt;BR /&gt;hospital_inpatient=None hospital_outpatient=None emergency_room=None urgent_care=None&lt;BR /&gt;other_specify=. provider_other= delay_care___1=Checked delay_care___2=Unchecked&lt;BR /&gt;delay_care___3=Unchecked delay_care___4=Unchecked delay_care___5=Unchecked&lt;BR /&gt;delay_care___6=Unchecked delay_care___7=Unchecked delay_care___8=Unchecked&lt;BR /&gt;delay_care___9=Unchecked delay_care___10=Unchecked delay_care___11=Unchecked&lt;BR /&gt;delay_care___12=Unchecked delay_care___13=Unchecked delay_care___14=Unchecked&lt;BR /&gt;delay_care___15=Unchecked delay_care___16=Unchecked delay_care___17=Unchecked&lt;BR /&gt;delaycare_otherreason= previsit_baseline_su_v_0=Complete survey_compdate=2016-04-26 model=.&lt;BR /&gt;_ERROR_=1 _N_=11&lt;BR /&gt;record_id=1033 consent=Yes future_research=Yes city_name=Wenatchee state2_74c=WA zipcode=98801&lt;BR /&gt;institution=Wenatchee Valley (Confluence) clinician=. clinician_canton=. clinician_parkridge=.&lt;BR /&gt;clinician_wenatchee=Katherine Kemble, DNP, FNP-C, AOCNP, ARNP clinician_akron=.&lt;BR /&gt;clinician_northshore=. clinician_berkshire=. clinician_legacy=. clinician_joliet=.&lt;BR /&gt;clinician_aultman=. clinician_stcloud=. clinician_parkview=. clinician_stmary=.&lt;BR /&gt;clinician_unitypoint=. clinician_spartanburg=. clinician_promedica=. clinician_sclhs=.&lt;BR /&gt;clinician_einstein=. clinician_stlukes=. clinician_southgeorgia=. clinician_augusta=.&lt;BR /&gt;clinician_anchorage=. clinician_hennepin=. clinician_sanford=. clinician_wheaton=.&lt;BR /&gt;clinician_oregon=. clinician_essentia=. clinician_memorialmedctr=. clinician_newengland=.&lt;BR /&gt;new_id=. gender=Female transgender=. transgender_2=. reassignment=. sex_reasstxt=&lt;BR /&gt;sexreass_txttime=. dob=1948-08-04 hispanic=No race___1=Checked race___2=Unchecked&lt;BR /&gt;race___3=Unchecked race___4=Unchecked race___5=Unchecked race___6=Unchecked&lt;BR /&gt;educat=Some college or 2-year degree income=$50,000 to $74,999 mar_stat=Married employ=Retired&lt;BR /&gt;state=WA can_type=Breast can_stage=Don't know date_dx=12-2015 txt_type___1=Checked&lt;BR /&gt;txt_type___2=Unchecked txt_type___3=Unchecked txt_type___4=Unchecked txt_type___5=Unchecked&lt;BR /&gt;txt_other= hormone=Yes, I am receiving hormone therapy. pain=1 fatigue=4 sleep_disturbance=3&lt;BR /&gt;memory_concentration=3 nausea_vomiting=0 No Concerns poor_appetitie=0 No Concerns&lt;BR /&gt;trouble_swallowing=2 dentalmouth_problems=0 No Concerns weight_changes=2 balance=3 strength=3&lt;BR /&gt;neuropathy=2 lymphedema=0 No Concerns bone_health=3 hairskin_issues=1 body_changes=3&lt;BR /&gt;bow_bladder=3 hot_flashes=3 sexual_issues=0 No Concerns fertility_issues=0 No Concerns&lt;BR /&gt;house=0 (no concerns) family=2 talk_cancer=2 return_work=0 (no concerns) health_insurance=3&lt;BR /&gt;financial_concerns=3 debt_medbills=3 normal=3 managing_emotions=4 coping=3 uncertainty=4&lt;BR /&gt;fear_recurrence=4 stress_management=3 isolation=2 intimacy=0 (no concerns) gratitude=3&lt;BR /&gt;wellbeing=3 relationship=3 supp_services=1 counseling=1 genetic_counseling=1&lt;BR /&gt;confidence_physical=3 q19=3 q20=3 q21=3 q22=1 Not at all confident q23=5 Totally confident&lt;BR /&gt;q24=3 q25=3 primary_care=1 time oncology=2-3 times other_specialty=None mental_health=None&lt;BR /&gt;hospital_inpatient=None hospital_outpatient=None emergency_room=None urgent_care=None&lt;BR /&gt;other_specify=. provider_other= delay_care___1=Unchecked delay_care___2=Unchecked&lt;BR /&gt;delay_care___3=Unchecked delay_care___4=Unchecked delay_care___5=Unchecked&lt;BR /&gt;delay_care___6=Unchecked delay_care___7=Unchecked delay_care___8=Unchecked&lt;BR /&gt;delay_care___9=Unchecked delay_care___10=Unchecked delay_care___11=Unchecked&lt;BR /&gt;delay_care___12=Unchecked delay_care___13=Checked delay_care___14=Unchecked&lt;BR /&gt;delay_care___15=Checked delay_care___16=Unchecked delay_care___17=Unchecked&lt;BR /&gt;delaycare_otherreason=I'm tired of seeing doctors previsit_baseline_su_v_0=Complete&lt;BR /&gt;survey_compdate=2016-04-25 model=. _ERROR_=1 _N_=12&lt;BR /&gt;record_id=1032 consent=Yes future_research=Yes city_name=Brainem state2_74c=MN zipcode=56401&lt;BR /&gt;institution=Essentia Institute of Rural Health clinician=. clinician_canton=.&lt;BR /&gt;clinician_parkridge=. clinician_wenatchee=. clinician_akron=. clinician_northshore=.&lt;BR /&gt;clinician_berkshire=. clinician_legacy=. clinician_joliet=. clinician_aultman=.&lt;BR /&gt;clinician_stcloud=. clinician_parkview=. clinician_stmary=. clinician_unitypoint=.&lt;BR /&gt;clinician_spartanburg=. clinician_promedica=. clinician_sclhs=. clinician_einstein=.&lt;BR /&gt;clinician_stlukes=. clinician_southgeorgia=. clinician_augusta=. clinician_anchorage=.&lt;BR /&gt;clinician_hennepin=. clinician_sanford=. clinician_wheaton=. clinician_oregon=.&lt;BR /&gt;clinician_essentia=Jessica Nybakken, CNP clinician_memorialmedctr=. clinician_newengland=.&lt;BR /&gt;new_id=. gender=Female transgender=. transgender_2=. reassignment=. sex_reasstxt=&lt;BR /&gt;sexreass_txttime=. dob=1969-07-17 hispanic=No race___1=Checked race___2=Unchecked&lt;BR /&gt;race___3=Unchecked race___4=Unchecked race___5=Unchecked race___6=Unchecked&lt;BR /&gt;educat=Graduate school degree income=$100,000 or more mar_stat=Divorced&lt;BR /&gt;employ=Working- as a paid employee state=MN can_type=Breast can_stage=Stage 2 date_dx=01-2015&lt;BR /&gt;txt_type___1=Checked txt_type___2=Checked txt_type___3=Checked txt_type___4=Unchecked&lt;BR /&gt;txt_type___5=Unchecked txt_other=&lt;BR /&gt;hormone=No, I have not or will not be receiving hormone therapy for this cancer.&lt;BR /&gt;pain=0 No Concerns fatigue=0 No Concerns sleep_disturbance=0 No Concerns&lt;BR /&gt;memory_concentration=0 No Concerns nausea_vomiting=0 No Concerns poor_appetitie=0 No Concerns&lt;BR /&gt;trouble_swallowing=0 No Concerns dentalmouth_problems=0 No Concerns&lt;BR /&gt;weight_changes=0 No Concerns balance=0 No Concerns strength=0 No Concerns neuropathy=2&lt;BR /&gt;lymphedema=1 bone_health=0 No Concerns hairskin_issues=3 body_changes=0 No Concerns&lt;BR /&gt;bow_bladder=0 No Concerns hot_flashes=0 No Concerns sexual_issues=0 No Concerns&lt;BR /&gt;fertility_issues=0 No Concerns house=0 (no concerns) family=0 (no concerns)&lt;BR /&gt;talk_cancer=0 (no concerns) return_work=0 (no concerns) health_insurance=0 (no concerns)&lt;BR /&gt;financial_concerns=0 (no concerns) debt_medbills=0 (no concerns) normal=0 (no concerns)&lt;BR /&gt;managing_emotions=0 (no concerns) coping=0 (no concerns) uncertainty=0 (no concerns)&lt;BR /&gt;fear_recurrence=0 (no concerns) stress_management=0 (no concerns) isolation=0 (no concerns)&lt;BR /&gt;intimacy=0 (no concerns) gratitude=0 (no concerns) wellbeing=0 (no concerns)&lt;BR /&gt;relationship=0 (no concerns) supp_services=0 (no concerns) counseling=0 (no concerns)&lt;BR /&gt;genetic_counseling=0 (no concerns) confidence_physical=5 Totally confident&lt;BR /&gt;q19=5 Totally confident q20=5 Totally confident q21=5 Totally confident q22=5 Totally confident&lt;BR /&gt;q23=5 Totally confident q24=5 Totally confident q25=5 Totally confident primary_care=None&lt;BR /&gt;oncology=None other_specialty=None mental_health=None hospital_inpatient=None&lt;BR /&gt;hospital_outpatient=None emergency_room=None urgent_care=None other_specify=None&lt;BR /&gt;provider_other= delay_care___1=Unchecked delay_care___2=Unchecked delay_care___3=Unchecked&lt;BR /&gt;delay_care___4=Unchecked delay_care___5=Unchecked delay_care___6=Unchecked&lt;BR /&gt;delay_care___7=Unchecked delay_care___8=Unchecked delay_care___9=Unchecked&lt;BR /&gt;delay_care___10=Unchecked delay_care___11=Unchecked delay_care___12=Unchecked&lt;BR /&gt;delay_care___13=Unchecked delay_care___14=Unchecked delay_care___15=Unchecked&lt;BR /&gt;delay_care___16=Unchecked delay_care___17=Unchecked delaycare_otherreason=&lt;BR /&gt;previsit_baseline_su_v_0=Complete survey_compdate=2016-04-22 model=. _ERROR_=1 _N_=13&lt;BR /&gt;record_id=1031 consent=Yes future_research=Yes city_name=Akeley state2_74c=MN zipcode=56433&lt;BR /&gt;institution=Essentia Institute of Rural Health clinician=. clinician_canton=.&lt;BR /&gt;clinician_parkridge=. clinician_wenatchee=. clinician_akron=. clinician_northshore=.&lt;BR /&gt;clinician_berkshire=. clinician_legacy=. clinician_joliet=. clinician_aultman=.&lt;BR /&gt;clinician_stcloud=. clinician_parkview=. clinician_stmary=. clinician_unitypoint=.&lt;BR /&gt;clinician_spartanburg=. clinician_promedica=. clinician_sclhs=. clinician_einstein=.&lt;BR /&gt;clinician_stlukes=. clinician_southgeorgia=. clinician_augusta=. clinician_anchorage=.&lt;BR /&gt;clinician_hennepin=. clinician_sanford=. clinician_wheaton=. clinician_oregon=.&lt;BR /&gt;clinician_essentia=Jessica Nybakken, CNP clinician_memorialmedctr=. clinician_newengland=.&lt;BR /&gt;new_id=. gender=Female transgender=. transgender_2=. reassignment=. sex_reasstxt=&lt;BR /&gt;sexreass_txttime=. dob=1952-03-21 hispanic=No race___1=Checked race___2=Unchecked&lt;BR /&gt;race___3=Unchecked race___4=Unchecked race___5=Unchecked race___6=Unchecked&lt;BR /&gt;educat=High school graduate or GED income=$50,000 to $74,999 mar_stat=Married&lt;BR /&gt;employ=Working- as a paid employee state=MN can_type=Breast can_stage=Stage 1 date_dx=08-2015&lt;BR /&gt;txt_type___1=Checked txt_type___2=Checked txt_type___3=Unchecked txt_type___4=Unchecked&lt;BR /&gt;txt_type___5=Unchecked txt_other= hormone=Yes, I am receiving hormone therapy.&lt;BR /&gt;pain=0 No Concerns fatigue=0 No Concerns sleep_disturbance=1 memory_concentration=0 No Concerns&lt;BR /&gt;nausea_vomiting=0 No Concerns poor_appetitie=0 No Concerns trouble_swallowing=0 No Concerns&lt;BR /&gt;dentalmouth_problems=0 No Concerns weight_changes=0 No Concerns balance=0 No Concerns&lt;BR /&gt;strength=0 No Concerns neuropathy=2 lymphedema=0 No Concerns bone_health=1&lt;BR /&gt;hairskin_issues=0 No Concerns body_changes=0 No Concerns bow_bladder=0 No Concerns&lt;BR /&gt;hot_flashes=0 No Concerns sexual_issues=0 No Concerns fertility_issues=0 No Concerns&lt;BR /&gt;house=0 (no concerns) family=0 (no concerns) talk_cancer=0 (no concerns)&lt;BR /&gt;return_work=0 (no concerns) health_insurance=0 (no concerns) financial_concerns=0 (no concerns)&lt;BR /&gt;debt_medbills=0 (no concerns) normal=0 (no concerns) managing_emotions=0 (no concerns)&lt;BR /&gt;coping=0 (no concerns) uncertainty=0 (no concerns) fear_recurrence=1&lt;BR /&gt;stress_management=0 (no concerns) isolation=0 (no concerns) intimacy=0 (no concerns)&lt;BR /&gt;gratitude=0 (no concerns) wellbeing=0 (no concerns) relationship=0 (no concerns)&lt;BR /&gt;supp_services=0 (no concerns) counseling=0 (no concerns) genetic_counseling=1&lt;BR /&gt;confidence_physical=5 Totally confident q19=5 Totally confident q20=5 Totally confident&lt;BR /&gt;q21=5 Totally confident q22=5 Totally confident q23=5 Totally confident q24=5 Totally confident&lt;BR /&gt;q25=5 Totally confident primary_care=None oncology=1 time other_specialty=1 time&lt;BR /&gt;mental_health=None hospital_inpatient=None hospital_outpatient=None emergency_room=None&lt;BR /&gt;urgent_care=None other_specify=None provider_other= delay_care___1=Unchecked&lt;BR /&gt;delay_care___2=Unchecked delay_care___3=Unchecked delay_care___4=Unchecked&lt;BR /&gt;delay_care___5=Unchecked delay_care___6=Unchecked delay_care___7=Unchecked&lt;BR /&gt;delay_care___8=Unchecked delay_care___9=Unchecked delay_care___10=Unchecked&lt;BR /&gt;delay_care___11=Unchecked delay_care___12=Unchecked delay_care___13=Unchecked&lt;BR /&gt;delay_care___14=Unchecked delay_care___15=Checked delay_care___16=Unchecked&lt;BR /&gt;delay_care___17=Unchecked delaycare_otherreason=Services not recommended during chemo.&lt;BR /&gt;previsit_baseline_su_v_0=Complete survey_compdate=2016-04-21 model=. _ERROR_=1 _N_=14&lt;BR /&gt;record_id=1030 consent=Yes future_research=Yes city_name=Massillon state2_74c=OH zipcode=44647&lt;BR /&gt;institution=Canton Mercy Medical Center clinician=. clinician_canton=Joan Edwards, RN, OCN&lt;BR /&gt;clinician_parkridge=. clinician_wenatchee=. clinician_akron=. clinician_northshore=.&lt;BR /&gt;clinician_berkshire=. clinician_legacy=. clinician_joliet=. clinician_aultman=.&lt;BR /&gt;clinician_stcloud=. clinician_parkview=. clinician_stmary=. clinician_unitypoint=.&lt;BR /&gt;clinician_spartanburg=. clinician_promedica=. clinician_sclhs=. clinician_einstein=.&lt;BR /&gt;clinician_stlukes=. clinician_southgeorgia=. clinician_augusta=. clinician_anchorage=.&lt;BR /&gt;clinician_hennepin=. clinician_sanford=. clinician_wheaton=. clinician_oregon=.&lt;BR /&gt;clinician_essentia=. clinician_memorialmedctr=. clinician_newengland=. new_id=. gender=Female&lt;BR /&gt;transgender=. transgender_2=. reassignment=. sex_reasstxt= sexreass_txttime=. dob=1975-10-17&lt;BR /&gt;hispanic=No race___1=Checked race___2=Unchecked race___3=Unchecked race___4=Unchecked&lt;BR /&gt;race___5=Unchecked race___6=Unchecked educat=Some college or 2-year degree&lt;BR /&gt;income=Less than $25,000 mar_stat=Married employ=Disabled state=OH can_type=Breast&lt;BR /&gt;can_stage=Stage 1 date_dx=10-2015 txt_type___1=Checked txt_type___2=Unchecked&lt;BR /&gt;txt_type___3=Checked txt_type___4=Unchecked txt_type___5=Unchecked txt_other=&lt;BR /&gt;hormone=Yes, I am receiving hormone therapy. pain=2 fatigue=2 sleep_disturbance=0 No Concerns&lt;BR /&gt;memory_concentration=2 nausea_vomiting=0 No Concerns poor_appetitie=0 No Concerns&lt;BR /&gt;trouble_swallowing=0 No Concerns dentalmouth_problems=0 No Concerns weight_changes=2 balance=1&lt;BR /&gt;strength=2 neuropathy=0 No Concerns lymphedema=0 No Concerns bone_health=0 No Concerns&lt;BR /&gt;hairskin_issues=0 No Concerns body_changes=0 No Concerns bow_bladder=0 No Concerns&lt;BR /&gt;hot_flashes=2 sexual_issues=2 fertility_issues=0 No Concerns house=2 family=2&lt;BR /&gt;talk_cancer=0 (no concerns) return_work=0 (no concerns) health_insurance=0 (no concerns)&lt;BR /&gt;financial_concerns=4 debt_medbills=1 normal=2 managing_emotions=2 coping=2 uncertainty=2&lt;BR /&gt;fear_recurrence=1 stress_management=4 isolation=2 intimacy=4 gratitude=2 wellbeing=2&lt;BR /&gt;relationship=0 (no concerns) supp_services=0 (no concerns) counseling=0 (no concerns)&lt;BR /&gt;genetic_counseling=3 confidence_physical=4 q19=4 q20=4 q21=4 q22=4 q23=4 q24=4 q25=4&lt;BR /&gt;primary_care=None oncology=None other_specialty=None mental_health=None hospital_inpatient=None&lt;BR /&gt;hospital_outpatient=None emergency_room=None urgent_care=None other_specify=1 time&lt;BR /&gt;provider_other=Surgeon- for checkup delay_care___1=Unchecked delay_care___2=Unchecked&lt;BR /&gt;delay_care___3=Unchecked delay_care___4=Unchecked delay_care___5=Unchecked&lt;BR /&gt;delay_care___6=Unchecked delay_care___7=Unchecked delay_care___8=Unchecked&lt;BR /&gt;delay_care___9=Unchecked delay_care___10=Unchecked delay_care___11=Unchecked&lt;BR /&gt;delay_care___12=Unchecked delay_care___13=Unchecked delay_care___14=Unchecked&lt;BR /&gt;delay_care___15=Unchecked delay_care___16=Unchecked delay_care___17=Checked&lt;BR /&gt;delaycare_otherreason= previsit_baseline_su_v_0=Complete survey_compdate=2016-04-19 model=.&lt;BR /&gt;_ERROR_=1 _N_=15&lt;BR /&gt;record_id=1029 consent=Yes future_research=Yes city_name=Saco state2_74c=ME zipcode=04072&lt;BR /&gt;institution=New England Cancer Specialists clinician=. clinician_canton=. clinician_parkridge=.&lt;BR /&gt;clinician_wenatchee=. clinician_akron=. clinician_northshore=. clinician_berkshire=.&lt;BR /&gt;clinician_legacy=. clinician_joliet=. clinician_aultman=. clinician_stcloud=.&lt;BR /&gt;clinician_parkview=. clinician_stmary=. clinician_unitypoint=. clinician_spartanburg=.&lt;BR /&gt;clinician_promedica=. clinician_sclhs=. clinician_einstein=. clinician_stlukes=.&lt;BR /&gt;clinician_southgeorgia=. clinician_augusta=. clinician_anchorage=. clinician_hennepin=.&lt;BR /&gt;clinician_sanford=. clinician_wheaton=. clinician_oregon=. clinician_essentia=.&lt;BR /&gt;clinician_memorialmedctr=. clinician_newengland=Danielle F. Bowen, NP-C new_id=. gender=Female&lt;BR /&gt;transgender=. transgender_2=. reassignment=. sex_reasstxt= sexreass_txttime=. dob=1961-04-01&lt;BR /&gt;hispanic=No race___1=Checked race___2=Unchecked race___3=Unchecked race___4=Checked&lt;BR /&gt;race___5=Unchecked race___6=Unchecked educat=Some college or 2-year degree&lt;BR /&gt;income=Less than $25,000 mar_stat=Divorced employ=Working- as a paid employee state=ME&lt;BR /&gt;can_type=Breast can_stage=Stage 1 date_dx=02-2014 txt_type___1=Checked txt_type___2=Unchecked&lt;BR /&gt;txt_type___3=Unchecked txt_type___4=Unchecked txt_type___5=Unchecked txt_other=&lt;BR /&gt;hormone=Yes, I am receiving hormone therapy. pain=. fatigue=2 sleep_disturbance=3&lt;BR /&gt;memory_concentration=5 Extreme Concerns nausea_vomiting=0 No Concerns poor_appetitie=1&lt;BR /&gt;trouble_swallowing=0 No Concerns dentalmouth_problems=0 No Concerns weight_changes=2&lt;BR /&gt;balance=0 No Concerns strength=2 neuropathy=2 lymphedema=0 No Concerns&lt;BR /&gt;bone_health=0 No Concerns hairskin_issues=0 No Concerns body_changes=0 No Concerns&lt;BR /&gt;bow_bladder=0 No Concerns hot_flashes=2 sexual_issues=0 No Concerns&lt;BR /&gt;fertility_issues=0 No Concerns house=0 (no concerns) family=0 (no concerns) talk_cancer=2&lt;BR /&gt;return_work=0 (no concerns) health_insurance=3 financial_concerns=3&lt;BR /&gt;debt_medbills=0 (no concerns) normal=0 (no concerns) managing_emotions=2 coping=0 (no concerns)&lt;BR /&gt;uncertainty=2 fear_recurrence=2 stress_management=0 (no concerns) isolation=0 (no concerns)&lt;BR /&gt;intimacy=0 (no concerns) gratitude=0 (no concerns) wellbeing=2 relationship=0 (no concerns)&lt;BR /&gt;supp_services=0 (no concerns) counseling=0 (no concerns) genetic_counseling=2&lt;BR /&gt;confidence_physical=4 q19=4 q20=5 Totally confident q21=4 q22=4 q23=5 Totally confident&lt;BR /&gt;q24=5 Totally confident q25=5 Totally confident primary_care=2-3 times oncology=6-7 times&lt;BR /&gt;other_specialty=4-5 times mental_health=. hospital_inpatient=. hospital_outpatient=.&lt;BR /&gt;emergency_room=. urgent_care=. other_specify=. provider_other= delay_care___1=Checked&lt;BR /&gt;delay_care___2=Unchecked delay_care___3=Unchecked delay_care___4=Unchecked&lt;BR /&gt;delay_care___5=Unchecked delay_care___6=Unchecked delay_care___7=Unchecked&lt;BR /&gt;delay_care___8=Unchecked delay_care___9=Unchecked delay_care___10=Unchecked&lt;BR /&gt;delay_care___11=Unchecked delay_care___12=Unchecked delay_care___13=Unchecked&lt;BR /&gt;delay_care___14=Unchecked delay_care___15=Unchecked delay_care___16=Unchecked&lt;BR /&gt;delay_care___17=Unchecked delaycare_otherreason= previsit_baseline_su_v_0=Complete&lt;BR /&gt;survey_compdate=2016-04-14 model=. _ERROR_=1 _N_=16&lt;BR /&gt;record_id=1028 consent=Yes future_research=Yes city_name=Saco state2_74c=ME zipcode=04072&lt;BR /&gt;institution=New England Cancer Specialists clinician=. clinician_canton=. clinician_parkridge=.&lt;BR /&gt;clinician_wenatchee=. clinician_akron=. clinician_northshore=. clinician_berkshire=.&lt;BR /&gt;clinician_legacy=. clinician_joliet=. clinician_aultman=. clinician_stcloud=.&lt;BR /&gt;clinician_parkview=. clinician_stmary=. clinician_unitypoint=. clinician_spartanburg=.&lt;BR /&gt;clinician_promedica=. clinician_sclhs=. clinician_einstein=. clinician_stlukes=.&lt;BR /&gt;clinician_southgeorgia=. clinician_augusta=. clinician_anchorage=. clinician_hennepin=.&lt;BR /&gt;clinician_sanford=. clinician_wheaton=. clinician_oregon=. clinician_essentia=.&lt;BR /&gt;clinician_memorialmedctr=. clinician_newengland=Danielle F. Bowen, NP-C new_id=. gender=Female&lt;BR /&gt;transgender=. transgender_2=. reassignment=. sex_reasstxt= sexreass_txttime=. dob=1972-04-06&lt;BR /&gt;hispanic=No race___1=Checked race___2=Unchecked race___3=Unchecked race___4=Unchecked&lt;BR /&gt;race___5=Unchecked race___6=Unchecked educat=Graduate school degree income=Less than $25,000&lt;BR /&gt;mar_stat=Never married employ=Disabled state=ME can_type=Breast can_stage=Stage 3&lt;BR /&gt;date_dx=01-2015 txt_type___1=Checked txt_type___2=Checked txt_type___3=Checked&lt;BR /&gt;txt_type___4=Unchecked txt_type___5=Unchecked txt_other=&lt;BR /&gt;hormone=Yes, I am receiving hormone therapy. pain=1 fatigue=1 sleep_disturbance=2&lt;BR /&gt;memory_concentration=3 nausea_vomiting=0 No Concerns poor_appetitie=1&lt;BR /&gt;trouble_swallowing=0 No Concerns dentalmouth_problems=1 weight_changes=1 balance=1 strength=3&lt;BR /&gt;neuropathy=2 lymphedema=2 bone_health=0 No Concerns hairskin_issues=2 body_changes=3&lt;BR /&gt;bow_bladder=1 hot_flashes=4 sexual_issues=4 fertility_issues=0 No Concerns house=1 family=1&lt;BR /&gt;talk_cancer=2 return_work=5 (extreme concerns) health_insurance=5 (extreme concerns)&lt;BR /&gt;financial_concerns=5 (extreme concerns) debt_medbills=5 (extreme concerns) normal=4&lt;BR /&gt;managing_emotions=3 coping=3 uncertainty=4 fear_recurrence=4 stress_management=3 isolation=2&lt;BR /&gt;intimacy=4 gratitude=2 wellbeing=3 relationship=3 supp_services=2 counseling=1&lt;BR /&gt;genetic_counseling=0 (no concerns) confidence_physical=4 q19=3 q20=4 q21=4 q22=4 q23=4 q24=3&lt;BR /&gt;q25=1 Not at all confident primary_care=None oncology=None other_specialty=None&lt;BR /&gt;mental_health=2-3 times hospital_inpatient=None hospital_outpatient=None emergency_room=None&lt;BR /&gt;urgent_care=None other_specify=2-3 times provider_other=neurology delay_care___1=Unchecked&lt;BR /&gt;delay_care___2=Unchecked delay_care___3=Checked delay_care___4=Unchecked&lt;BR /&gt;delay_care___5=Unchecked delay_care___6=Unchecked delay_care___7=Unchecked&lt;BR /&gt;delay_care___8=Unchecked delay_care___9=Unchecked delay_care___10=Unchecked&lt;BR /&gt;delay_care___11=Unchecked delay_care___12=Unchecked delay_care___13=Unchecked&lt;BR /&gt;delay_care___14=Checked delay_care___15=Unchecked delay_care___16=Unchecked&lt;BR /&gt;delay_care___17=Unchecked delaycare_otherreason= previsit_baseline_su_v_0=Complete&lt;BR /&gt;survey_compdate=2016-04-11 model=. _ERROR_=1 _N_=17&lt;BR /&gt;record_id=1027 consent=Yes future_research=Yes city_name= state2_74c=. zipcode=&lt;BR /&gt;institution=Wenatchee Valley (Confluence) clinician=. clinician_canton=. clinician_parkridge=.&lt;BR /&gt;clinician_wenatchee=Katherine Kemble, DNP, FNP-C, AOCNP, ARNP clinician_akron=.&lt;BR /&gt;clinician_northshore=. clinician_berkshire=. clinician_legacy=. clinician_joliet=.&lt;BR /&gt;clinician_aultman=. clinician_stcloud=. clinician_parkview=. clinician_stmary=.&lt;BR /&gt;clinician_unitypoint=. clinician_spartanburg=. clinician_promedica=. clinician_sclhs=.&lt;BR /&gt;clinician_einstein=. clinician_stlukes=. clinician_southgeorgia=. clinician_augusta=.&lt;BR /&gt;clinician_anchorage=. clinician_hennepin=. clinician_sanford=. clinician_wheaton=.&lt;BR /&gt;clinician_oregon=. clinician_essentia=. clinician_memorialmedctr=. clinician_newengland=.&lt;BR /&gt;new_id=. gender=Female transgender=. transgender_2=. reassignment=. sex_reasstxt=&lt;BR /&gt;sexreass_txttime=. dob=1941-12-11 hispanic=No race___1=Checked race___2=Unchecked&lt;BR /&gt;race___3=Unchecked race___4=Unchecked race___5=Unchecked race___6=Unchecked&lt;BR /&gt;educat=Graduate school degree income=$50,000 to $74,999 mar_stat=Married employ=Retired&lt;BR /&gt;state=WA can_type=Breast can_stage=Stage 1 date_dx=12-2015 txt_type___1=Checked&lt;BR /&gt;txt_type___2=Unchecked txt_type___3=Checked txt_type___4=Unchecked txt_type___5=Unchecked&lt;BR /&gt;txt_other= hormone=Yes, I am receiving hormone therapy. pain=0 No Concerns&lt;BR /&gt;fatigue=0 No Concerns sleep_disturbance=0 No Concerns memory_concentration=0 No Concerns&lt;BR /&gt;nausea_vomiting=0 No Concerns poor_appetitie=0 No Concerns trouble_swallowing=0 No Concerns&lt;BR /&gt;dentalmouth_problems=0 No Concerns weight_changes=1 balance=0 No Concerns&lt;BR /&gt;strength=0 No Concerns neuropathy=0 No Concerns lymphedema=0 No Concerns bone_health=2&lt;BR /&gt;hairskin_issues=0 No Concerns body_changes=0 No Concerns bow_bladder=0 No Concerns&lt;BR /&gt;hot_flashes=1 sexual_issues=0 No Concerns fertility_issues=0 No Concerns house=0 (no concerns)&lt;BR /&gt;family=0 (no concerns) talk_cancer=0 (no concerns) return_work=0 (no concerns)&lt;BR /&gt;health_insurance=0 (no concerns) financial_concerns=2 debt_medbills=2 normal=0 (no concerns)&lt;BR /&gt;managing_emotions=0 (no concerns) coping=0 (no concerns) uncertainty=0 (no concerns)&lt;BR /&gt;fear_recurrence=2 stress_management=0 (no concerns) isolation=0 (no concerns)&lt;BR /&gt;intimacy=0 (no concerns) gratitude=0 (no concerns) wellbeing=0 (no concerns)&lt;BR /&gt;relationship=0 (no concerns) supp_services=0 (no concerns) counseling=0 (no concerns)&lt;BR /&gt;genetic_counseling=0 (no concerns) confidence_physical=5 Totally confident&lt;BR /&gt;q19=5 Totally confident q20=5 Totally confident q21=4 q22=3 q23=4 q24=4 q25=3 primary_care=None&lt;BR /&gt;oncology=None other_specialty=None mental_health=None hospital_inpatient=None&lt;BR /&gt;hospital_outpatient=None emergency_room=None urgent_care=None other_specify=None&lt;BR /&gt;provider_other= delay_care___1=Checked delay_care___2=Unchecked delay_care___3=Unchecked&lt;BR /&gt;delay_care___4=Unchecked delay_care___5=Unchecked delay_care___6=Unchecked&lt;BR /&gt;delay_care___7=Unchecked delay_care___8=Checked delay_care___9=Unchecked&lt;BR /&gt;delay_care___10=Unchecked delay_care___11=Unchecked delay_care___12=Unchecked&lt;BR /&gt;delay_care___13=Unchecked delay_care___14=Unchecked delay_care___15=Unchecked&lt;BR /&gt;delay_care___16=Unchecked delay_care___17=Unchecked delaycare_otherreason=&lt;BR /&gt;previsit_baseline_su_v_0=Complete survey_compdate=2016-04-18 model=. _ERROR_=1 _N_=18&lt;BR /&gt;record_id=1026 consent=Yes future_research=Yes city_name=Brainerb state2_74c=MN zipcode=56401&lt;BR /&gt;institution=Essentia Institute of Rural Health clinician=. clinician_canton=.&lt;BR /&gt;clinician_parkridge=. clinician_wenatchee=. clinician_akron=. clinician_northshore=.&lt;BR /&gt;clinician_berkshire=. clinician_legacy=. clinician_joliet=. clinician_aultman=.&lt;BR /&gt;clinician_stcloud=. clinician_parkview=. clinician_stmary=. clinician_unitypoint=.&lt;BR /&gt;clinician_spartanburg=. clinician_promedica=. clinician_sclhs=. clinician_einstein=.&lt;BR /&gt;clinician_stlukes=. clinician_southgeorgia=. clinician_augusta=. clinician_anchorage=.&lt;BR /&gt;clinician_hennepin=. clinician_sanford=. clinician_wheaton=. clinician_oregon=.&lt;BR /&gt;clinician_essentia=Jessica Nybakken, CNP clinician_memorialmedctr=. clinician_newengland=.&lt;BR /&gt;new_id=. gender=Female transgender=. transgender_2=. reassignment=. sex_reasstxt=&lt;BR /&gt;sexreass_txttime=. dob=1957-03-17 hispanic=No race___1=Checked race___2=Unchecked&lt;BR /&gt;race___3=Unchecked race___4=Unchecked race___5=Unchecked race___6=Unchecked&lt;BR /&gt;educat=High school graduate or GED income=Less than $25,000 mar_stat=Divorced&lt;BR /&gt;employ=Working- as a paid employee state=MN can_type=Breast can_stage=Stage 1 date_dx=09-2014&lt;BR /&gt;txt_type___1=Checked txt_type___2=Unchecked txt_type___3=Checked txt_type___4=Unchecked&lt;BR /&gt;txt_type___5=Unchecked txt_other=&lt;BR /&gt;hormone=No, I have not or will not be receiving hormone therapy for this cancer.&lt;BR /&gt;pain=0 No Concerns fatigue=3 sleep_disturbance=3 memory_concentration=3 nausea_vomiting=.&lt;BR /&gt;poor_appetitie=0 No Concerns trouble_swallowing=0 No Concerns&lt;BR /&gt;dentalmouth_problems=0 No Concerns weight_changes=0 No Concerns balance=0 No Concerns&lt;BR /&gt;strength=3 neuropathy=0 No Concerns lymphedema=0 No Concerns bone_health=3&lt;BR /&gt;hairskin_issues=0 No Concerns body_changes=0 No Concerns bow_bladder=3 hot_flashes=3&lt;BR /&gt;sexual_issues=0 No Concerns fertility_issues=0 No Concerns house=0 (no concerns)&lt;BR /&gt;family=0 (no concerns) talk_cancer=0 (no concerns) return_work=2&lt;BR /&gt;health_insurance=0 (no concerns) financial_concerns=0 (no concerns)&lt;BR /&gt;debt_medbills=0 (no concerns) normal=2 managing_emotions=2 coping=2 uncertainty=0 (no concerns)&lt;BR /&gt;fear_recurrence=3 stress_management=0 (no concerns) isolation=0 (no concerns) intimacy=.&lt;BR /&gt;gratitude=0 (no concerns) wellbeing=0 (no concerns) relationship=0 (no concerns)&lt;BR /&gt;supp_services=0 (no concerns) counseling=0 (no concerns) genetic_counseling=0 (no concerns)&lt;BR /&gt;confidence_physical=3 q19=3 q20=4 q21=3 q22=4 q23=4 q24=5 Totally confident&lt;BR /&gt;q25=5 Totally confident primary_care=None oncology=None other_specialty=None mental_health=None&lt;BR /&gt;hospital_inpatient=None hospital_outpatient=None emergency_room=None urgent_care=None&lt;BR /&gt;other_specify=None provider_other= delay_care___1=Checked delay_care___2=Unchecked&lt;BR /&gt;delay_care___3=Unchecked delay_care___4=Unchecked delay_care___5=Unchecked&lt;BR /&gt;delay_care___6=Unchecked delay_care___7=Unchecked delay_care___8=Unchecked&lt;BR /&gt;delay_care___9=Unchecked delay_care___10=Unchecked delay_care___11=Unchecked&lt;BR /&gt;delay_care___12=Unchecked delay_care___13=Unchecked delay_care___14=Unchecked&lt;BR /&gt;delay_care___15=Unchecked delay_care___16=Unchecked delay_care___17=Unchecked&lt;BR /&gt;delaycare_otherreason= previsit_baseline_su_v_0=Complete survey_compdate=2016-04-15 model=.&lt;BR /&gt;_ERROR_=1 _N_=19&lt;BR /&gt;WARNING: Limit set by ERRORS= option reached. Further errors of this type will not be printed.&lt;BR /&gt;record_id=1025 consent=Yes future_research=Yes city_name= state2_74c=. zipcode=&lt;BR /&gt;institution=SCLHS (Saint Joseph Hospital) clinician=. clinician_canton=. clinician_parkridge=.&lt;BR /&gt;clinician_wenatchee=. clinician_akron=. clinician_northshore=. clinician_berkshire=.&lt;BR /&gt;clinician_legacy=. clinician_joliet=. clinician_aultman=. clinician_stcloud=.&lt;BR /&gt;clinician_parkview=. clinician_stmary=. clinician_unitypoint=. clinician_spartanburg=.&lt;BR /&gt;clinician_promedica=. clinician_sclhs=Deborah Cook, MD clinician_einstein=. clinician_stlukes=.&lt;BR /&gt;clinician_southgeorgia=. clinician_augusta=. clinician_anchorage=. clinician_hennepin=.&lt;BR /&gt;clinician_sanford=. clinician_wheaton=. clinician_oregon=. clinician_essentia=.&lt;BR /&gt;clinician_memorialmedctr=. clinician_newengland=. new_id=. gender=Female transgender=.&lt;BR /&gt;transgender_2=. reassignment=. sex_reasstxt= sexreass_txttime=. dob=1956-03-01 hispanic=No&lt;BR /&gt;race___1=Checked race___2=Unchecked race___3=Unchecked race___4=Unchecked race___5=Unchecked&lt;BR /&gt;race___6=Unchecked educat=Some college or 2-year degree income=$100,000 or more&lt;BR /&gt;mar_stat=Divorced employ=Working- as a paid employee state=CO can_type=Breast can_stage=Stage 3&lt;BR /&gt;date_dx=10-2014 txt_type___1=Checked txt_type___2=Checked txt_type___3=Checked&lt;BR /&gt;txt_type___4=Unchecked txt_type___5=Unchecked txt_other=&lt;BR /&gt;hormone=No, I have not or will not be receiving hormone therapy for this cancer.&lt;BR /&gt;pain=0 No Concerns fatigue=0 No Concerns sleep_disturbance=2 memory_concentration=0 No Concerns&lt;BR /&gt;nausea_vomiting=0 No Concerns poor_appetitie=0 No Concerns trouble_swallowing=0 No Concerns&lt;BR /&gt;dentalmouth_problems=0 No Concerns weight_changes=0 No Concerns balance=0 No Concerns&lt;BR /&gt;strength=0 No Concerns neuropathy=0 No Concerns lymphedema=0 No Concerns&lt;BR /&gt;bone_health=0 No Concerns hairskin_issues=2 body_changes=2 bow_bladder=0 No Concerns&lt;BR /&gt;hot_flashes=0 No Concerns sexual_issues=0 No Concerns fertility_issues=0 No Concerns&lt;BR /&gt;house=0 (no concerns) family=0 (no concerns) talk_cancer=0 (no concerns)&lt;BR /&gt;return_work=0 (no concerns) health_insurance=0 (no concerns) financial_concerns=0 (no concerns)&lt;BR /&gt;debt_medbills=0 (no concerns) normal=0 (no concerns) managing_emotions=0 (no concerns)&lt;BR /&gt;coping=0 (no concerns) uncertainty=0 (no concerns) fear_recurrence=0 (no concerns)&lt;BR /&gt;stress_management=0 (no concerns) isolation=0 (no concerns) intimacy=0 (no concerns)&lt;BR /&gt;gratitude=0 (no concerns) wellbeing=0 (no concerns) relationship=0 (no concerns)&lt;BR /&gt;supp_services=0 (no concerns) counseling=0 (no concerns) genetic_counseling=0 (no concerns)&lt;BR /&gt;confidence_physical=5 Totally confident q19=5 Totally confident q20=5 Totally confident&lt;BR /&gt;q21=5 Totally confident q22=5 Totally confident q23=5 Totally confident q24=5 Totally confident&lt;BR /&gt;q25=5 Totally confident primary_care=None oncology=4-5 times other_specialty=None&lt;BR /&gt;mental_health=None hospital_inpatient=None hospital_outpatient=None emergency_room=None&lt;BR /&gt;urgent_care=None other_specify=None provider_other= delay_care___1=Checked&lt;BR /&gt;delay_care___2=Unchecked delay_care___3=Unchecked delay_care___4=Unchecked&lt;BR /&gt;delay_care___5=Unchecked delay_care___6=Unchecked delay_care___7=Unchecked&lt;BR /&gt;delay_care___8=Unchecked delay_care___9=Unchecked delay_care___10=Unchecked&lt;BR /&gt;delay_care___11=Unchecked delay_care___12=Unchecked delay_care___13=Unchecked&lt;BR /&gt;delay_care___14=Unchecked delay_care___15=Unchecked delay_care___16=Unchecked&lt;BR /&gt;delay_care___17=Unchecked delaycare_otherreason= previsit_baseline_su_v_0=Complete&lt;BR /&gt;survey_compdate=2016-04-15 model=. _ERROR_=1 _N_=20&lt;BR /&gt;NOTE: There were 992 observations read from the data set WORK.BASELINE.&lt;BR /&gt;NOTE: The data set WORK.MODELS_BASELINE has 992 observations and 146 variables.&lt;BR /&gt;NOTE: DATA statement used (Total process time):&lt;BR /&gt;real time 0.34 seconds&lt;BR /&gt;cpu time 0.32 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When I click on the data set, only the variable "model" (created in the if/else statement) is shown but no data is there.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 22 Jun 2016 18:56:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/If-Else-Errors-in-SAS-9-4/m-p/279528#M311316</guid>
      <dc:creator>malikah_sph</dc:creator>
      <dc:date>2016-06-22T18:56:39Z</dc:date>
    </item>
    <item>
      <title>Re: If/Else Errors in SAS 9.4</title>
      <link>https://communities.sas.com/t5/SAS-Programming/If-Else-Errors-in-SAS-9-4/m-p/279529#M311317</link>
      <description>&lt;P&gt;Review your input set. For some reason SAS things institution is a numeric variable not a character variable the way you're treating it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What happens if you run the following? Do you see the institution values you're checking for?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc freq data=baseline;
table institution;&lt;BR /&gt;format institution;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Also, if you have these values listed in another dataset it may make it easier to categorize them using a format.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 22 Jun 2016 19:01:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/If-Else-Errors-in-SAS-9-4/m-p/279529#M311317</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-06-22T19:01:51Z</dc:date>
    </item>
    <item>
      <title>Re: If/Else Errors in SAS 9.4</title>
      <link>https://communities.sas.com/t5/SAS-Programming/If-Else-Errors-in-SAS-9-4/m-p/279540#M311318</link>
      <description>&lt;P&gt;The program already has a format, when I run the freq procedure it shows the institution values.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 22 Jun 2016 19:41:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/If-Else-Errors-in-SAS-9-4/m-p/279540#M311318</guid>
      <dc:creator>malikah_sph</dc:creator>
      <dc:date>2016-06-22T19:41:08Z</dc:date>
    </item>
    <item>
      <title>Re: If/Else Errors in SAS 9.4</title>
      <link>https://communities.sas.com/t5/SAS-Programming/If-Else-Errors-in-SAS-9-4/m-p/279552#M311319</link>
      <description>My format statement removes the format to see underlying value. If theres a format applied you need to use PUT to convert value or use actual value.</description>
      <pubDate>Wed, 22 Jun 2016 20:09:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/If-Else-Errors-in-SAS-9-4/m-p/279552#M311319</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-06-22T20:09:29Z</dc:date>
    </item>
    <item>
      <title>Re: If/Else Errors in SAS 9.4</title>
      <link>https://communities.sas.com/t5/SAS-Programming/If-Else-Errors-in-SAS-9-4/m-p/279554#M311320</link>
      <description>&lt;P&gt;I used the actual value and it worked perfectly! Thank you so much.&lt;/P&gt;</description>
      <pubDate>Wed, 22 Jun 2016 20:11:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/If-Else-Errors-in-SAS-9-4/m-p/279554#M311320</guid>
      <dc:creator>malikah_sph</dc:creator>
      <dc:date>2016-06-22T20:11:58Z</dc:date>
    </item>
  </channel>
</rss>

