<?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: labels in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/labels/m-p/406273#M98889</link>
    <description>&lt;P&gt;Sir what if after creating labels i want to assign the values :-&lt;/P&gt;&lt;P&gt;I am getting the error :&lt;BR /&gt;VALUE Health_food_store&lt;BR /&gt;_____&lt;BR /&gt;180&lt;BR /&gt;ERROR 180-322: Statement is not valid or it is used out of proper order.&lt;BR /&gt;104 0='NO'&lt;BR /&gt;105 1='YES';&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;code:&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;data _class_s.Grocery_coupons;&lt;BR /&gt;input Storeid hlthfood size org custid gender shopfor veg style usecoupon week seq carry coupval amtspent;&lt;BR /&gt;cards;&lt;BR /&gt;1 2 3 4 5 6 7 8 9 10 11 12 13 14 15&lt;BR /&gt;;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Data _class_s;set _class_s.Grocery_coupons;&lt;BR /&gt;label Storeid =" Store ID "&lt;BR /&gt;hlthfood ="Health_food_store"&lt;BR /&gt;size = "Size_of_store"&lt;BR /&gt;org = "Store_of_organization"&lt;BR /&gt;custid = "Customer_ID"&lt;BR /&gt;gender ="Gender"&lt;BR /&gt;shopfor = "Who_Shopping_For"&lt;BR /&gt;veg ="Vegetarian"&lt;BR /&gt;style "SHOPPING_STYLE"&lt;BR /&gt;usecoupon = "USE_COUPONS"&lt;BR /&gt;week = "Week"&lt;BR /&gt;seq = "Sequence"&lt;BR /&gt;carry = "Carry_over"&lt;BR /&gt;coupval = "Value_of_coupon"&lt;BR /&gt;amtspent = "Amount_spent" ;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;PROC FORMAT lib=_class_s.Grocery_coupons fmtlib;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;proc contents data=_class_s.Grocery_coupons;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;VALUE Health_food_store&lt;BR /&gt;0='NO'&lt;BR /&gt;1='YES';&lt;/P&gt;&lt;P&gt;VALUE Size_of_store&lt;BR /&gt;1='SMALL'&lt;BR /&gt;2='MEDIUM'&lt;BR /&gt;3='LARGE';&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;VALUE Store_of_organization&lt;BR /&gt;1='EMPHASIZES_PRODUCE'&lt;BR /&gt;2='EMPHASIZES_DELI'&lt;BR /&gt;3='EMPHASIZES_BAKERY'&lt;BR /&gt;4=' NO_EMPHASIS' ;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;VALUE Gender&lt;BR /&gt;0='MALE'&lt;BR /&gt;1='FEMALE';&lt;BR /&gt;&lt;BR /&gt;VALUE Who_Shopping_For&lt;BR /&gt;1='SELF'&lt;BR /&gt;2='SELF_AND_SPOUSE'&lt;BR /&gt;3='SELF_AND_FAMILY';&lt;BR /&gt;&lt;BR /&gt;VALUE Vegetarian&lt;BR /&gt;0='NO'&lt;BR /&gt;1='YES';&lt;/P&gt;&lt;P&gt;VALUE SHOPPING_STYLE&lt;BR /&gt;1= 'Biweekly;inbulk'&lt;BR /&gt;2= 'Weekly;similar_items'&lt;BR /&gt;3= 'often;what_on_sale';&lt;BR /&gt;&lt;BR /&gt;VALUE USE_COUPONS&lt;BR /&gt;1='NO'&lt;BR /&gt;2='From_newspaper'&lt;BR /&gt;3='From_mailing'&lt;BR /&gt;4='From_both';&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;VALUE Carryover&lt;BR /&gt;0='Firstperiod'&lt;BR /&gt;1='No_coupon'&lt;BR /&gt;2='5_percent'&lt;BR /&gt;3='15_percent'&lt;BR /&gt;4='25_percent';&lt;BR /&gt;&lt;BR /&gt;VALUE Value_of_coupon&lt;BR /&gt;1='No_value'&lt;BR /&gt;2='5_percent'&lt;BR /&gt;3='15_percent'&lt;BR /&gt;4='25_percent';&lt;BR /&gt;RUN;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;options fmtsearch =(_class_s.Grocery_coupons);&lt;/P&gt;&lt;P&gt;data _class_s;&lt;BR /&gt;set _class_s.Grocery_coupons;&lt;BR /&gt;format hlthfood Health_food_store. size Size_of_store.&lt;BR /&gt;org Store_of_organization. gender Gender. shopfor Who_Shopping_For.&lt;BR /&gt;veg Vegetarian. style SHOPPING_STYLE. usecoupon USE_COUPONS.&lt;BR /&gt;carry Carryover. coupval Value_of_coupon.;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sat, 21 Oct 2017 16:52:16 GMT</pubDate>
    <dc:creator>mehak</dc:creator>
    <dc:date>2017-10-21T16:52:16Z</dc:date>
    <item>
      <title>labels</title>
      <link>https://communities.sas.com/t5/SAS-Programming/labels/m-p/406261#M98879</link>
      <description>&lt;P&gt;In the output i am not able to see the labels . I think there must be a syntax problem&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Data _class_s;&lt;/P&gt;&lt;P&gt;set _class_s.Grocery_coupons;&lt;BR /&gt;label Storeid =" Store ID "&lt;BR /&gt;hlthfood ="Health_food_store"&lt;BR /&gt;size = "Size_of_store"&lt;BR /&gt;org = "Store_of_organization"&lt;BR /&gt;usecoupon = "USE_COUPONS"&lt;BR /&gt;week = "Week"&lt;BR /&gt;seq = "Sequence"&lt;BR /&gt;carry = "Carry_over"&lt;BR /&gt;coupval = "Value_of_coupon"&lt;BR /&gt;amtspent = "Amount_spent" ;&lt;BR /&gt;run;&lt;/P&gt;</description>
      <pubDate>Sat, 21 Oct 2017 15:54:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/labels/m-p/406261#M98879</guid>
      <dc:creator>mehak</dc:creator>
      <dc:date>2017-10-21T15:54:44Z</dc:date>
    </item>
    <item>
      <title>Re: labels</title>
      <link>https://communities.sas.com/t5/SAS-Programming/labels/m-p/406264#M98881</link>
      <description>&lt;P&gt;Nothing wrong with your code, unless your log is showing an error in that you never assigned the libname _class_s&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Your code indicates that you are trying to create the file work.class_s, using a file called Grocery_coupons that is located in a libname called _class_s.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The following code worked for me:&lt;/P&gt;
&lt;PRE&gt;libname _class_s "/folders/myfolders";
data _class_s.Grocery_coupons;
  input Storeid hlthfood size org usecoupon week seq carry coupval amtspent;
  cards;
1 2 3 4 5 6 7 8 9 10
;

Data _class_s;
set _class_s.Grocery_coupons;
label Storeid =" Store ID "
hlthfood ="Health_food_store"
size = "Size_of_store"
org = "Store_of_organization"
usecoupon = "USE_COUPONS"
week = "Week"
seq = "Sequence"
carry = "Carry_over"
coupval = "Value_of_coupon"
amtspent = "Amount_spent" ;
run;&lt;/PRE&gt;
&lt;P&gt;Art, CEO, AnalystFinder.com&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 21 Oct 2017 16:20:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/labels/m-p/406264#M98881</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2017-10-21T16:20:08Z</dc:date>
    </item>
    <item>
      <title>Re: labels</title>
      <link>https://communities.sas.com/t5/SAS-Programming/labels/m-p/406273#M98889</link>
      <description>&lt;P&gt;Sir what if after creating labels i want to assign the values :-&lt;/P&gt;&lt;P&gt;I am getting the error :&lt;BR /&gt;VALUE Health_food_store&lt;BR /&gt;_____&lt;BR /&gt;180&lt;BR /&gt;ERROR 180-322: Statement is not valid or it is used out of proper order.&lt;BR /&gt;104 0='NO'&lt;BR /&gt;105 1='YES';&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;code:&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;data _class_s.Grocery_coupons;&lt;BR /&gt;input Storeid hlthfood size org custid gender shopfor veg style usecoupon week seq carry coupval amtspent;&lt;BR /&gt;cards;&lt;BR /&gt;1 2 3 4 5 6 7 8 9 10 11 12 13 14 15&lt;BR /&gt;;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Data _class_s;set _class_s.Grocery_coupons;&lt;BR /&gt;label Storeid =" Store ID "&lt;BR /&gt;hlthfood ="Health_food_store"&lt;BR /&gt;size = "Size_of_store"&lt;BR /&gt;org = "Store_of_organization"&lt;BR /&gt;custid = "Customer_ID"&lt;BR /&gt;gender ="Gender"&lt;BR /&gt;shopfor = "Who_Shopping_For"&lt;BR /&gt;veg ="Vegetarian"&lt;BR /&gt;style "SHOPPING_STYLE"&lt;BR /&gt;usecoupon = "USE_COUPONS"&lt;BR /&gt;week = "Week"&lt;BR /&gt;seq = "Sequence"&lt;BR /&gt;carry = "Carry_over"&lt;BR /&gt;coupval = "Value_of_coupon"&lt;BR /&gt;amtspent = "Amount_spent" ;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;PROC FORMAT lib=_class_s.Grocery_coupons fmtlib;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;proc contents data=_class_s.Grocery_coupons;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;VALUE Health_food_store&lt;BR /&gt;0='NO'&lt;BR /&gt;1='YES';&lt;/P&gt;&lt;P&gt;VALUE Size_of_store&lt;BR /&gt;1='SMALL'&lt;BR /&gt;2='MEDIUM'&lt;BR /&gt;3='LARGE';&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;VALUE Store_of_organization&lt;BR /&gt;1='EMPHASIZES_PRODUCE'&lt;BR /&gt;2='EMPHASIZES_DELI'&lt;BR /&gt;3='EMPHASIZES_BAKERY'&lt;BR /&gt;4=' NO_EMPHASIS' ;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;VALUE Gender&lt;BR /&gt;0='MALE'&lt;BR /&gt;1='FEMALE';&lt;BR /&gt;&lt;BR /&gt;VALUE Who_Shopping_For&lt;BR /&gt;1='SELF'&lt;BR /&gt;2='SELF_AND_SPOUSE'&lt;BR /&gt;3='SELF_AND_FAMILY';&lt;BR /&gt;&lt;BR /&gt;VALUE Vegetarian&lt;BR /&gt;0='NO'&lt;BR /&gt;1='YES';&lt;/P&gt;&lt;P&gt;VALUE SHOPPING_STYLE&lt;BR /&gt;1= 'Biweekly;inbulk'&lt;BR /&gt;2= 'Weekly;similar_items'&lt;BR /&gt;3= 'often;what_on_sale';&lt;BR /&gt;&lt;BR /&gt;VALUE USE_COUPONS&lt;BR /&gt;1='NO'&lt;BR /&gt;2='From_newspaper'&lt;BR /&gt;3='From_mailing'&lt;BR /&gt;4='From_both';&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;VALUE Carryover&lt;BR /&gt;0='Firstperiod'&lt;BR /&gt;1='No_coupon'&lt;BR /&gt;2='5_percent'&lt;BR /&gt;3='15_percent'&lt;BR /&gt;4='25_percent';&lt;BR /&gt;&lt;BR /&gt;VALUE Value_of_coupon&lt;BR /&gt;1='No_value'&lt;BR /&gt;2='5_percent'&lt;BR /&gt;3='15_percent'&lt;BR /&gt;4='25_percent';&lt;BR /&gt;RUN;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;options fmtsearch =(_class_s.Grocery_coupons);&lt;/P&gt;&lt;P&gt;data _class_s;&lt;BR /&gt;set _class_s.Grocery_coupons;&lt;BR /&gt;format hlthfood Health_food_store. size Size_of_store.&lt;BR /&gt;org Store_of_organization. gender Gender. shopfor Who_Shopping_For.&lt;BR /&gt;veg Vegetarian. style SHOPPING_STYLE. usecoupon USE_COUPONS.&lt;BR /&gt;carry Carryover. coupval Value_of_coupon.;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 21 Oct 2017 16:52:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/labels/m-p/406273#M98889</guid>
      <dc:creator>mehak</dc:creator>
      <dc:date>2017-10-21T16:52:16Z</dc:date>
    </item>
    <item>
      <title>Re: labels</title>
      <link>https://communities.sas.com/t5/SAS-Programming/labels/m-p/406274#M98890</link>
      <description>&lt;P&gt;You somehow managed to insert a proc contents into your proc format. Very obvious.&lt;/P&gt;</description>
      <pubDate>Sat, 21 Oct 2017 17:05:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/labels/m-p/406274#M98890</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2017-10-21T17:05:16Z</dc:date>
    </item>
    <item>
      <title>Re: labels</title>
      <link>https://communities.sas.com/t5/SAS-Programming/labels/m-p/406275#M98891</link>
      <description>&lt;P&gt;You broke the PROC FORMAT step inserting proc contents:&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;PROC FORMAT lib=_class_s.Grocery_coupons fmtlib;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;proc contents data=_class_s.Grocery_coupons;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;run;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;VALUE Health_food_store&lt;BR /&gt;0='NO'&lt;BR /&gt;1='YES';&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Move&lt;/STRONG&gt; the proc contents at the end of proc format (after RUN; statement);&lt;/P&gt;</description>
      <pubDate>Sat, 21 Oct 2017 17:06:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/labels/m-p/406275#M98891</guid>
      <dc:creator>Shmuel</dc:creator>
      <dc:date>2017-10-21T17:06:17Z</dc:date>
    </item>
    <item>
      <title>Re: labels</title>
      <link>https://communities.sas.com/t5/SAS-Programming/labels/m-p/406276#M98892</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/172699"&gt;@mehak&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;In the output i am not able to see the labels . I think there must be a syntax problem&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Data _class_s;&lt;/P&gt;
&lt;P&gt;set _class_s.Grocery_coupons;&lt;BR /&gt;label Storeid =" Store ID "&lt;BR /&gt;hlthfood ="Health_food_store"&lt;BR /&gt;size = "Size_of_store"&lt;BR /&gt;org = "Store_of_organization"&lt;BR /&gt;usecoupon = "USE_COUPONS"&lt;BR /&gt;week = "Week"&lt;BR /&gt;seq = "Sequence"&lt;BR /&gt;carry = "Carry_over"&lt;BR /&gt;coupval = "Value_of_coupon"&lt;BR /&gt;amtspent = "Amount_spent" ;&lt;BR /&gt;run;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Define "output". Procedures like proc print need to be told to use labels, and the viewtables in EG or Base SAS can be configured to either use labels or variable names.&lt;/P&gt;</description>
      <pubDate>Sat, 21 Oct 2017 17:09:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/labels/m-p/406276#M98892</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2017-10-21T17:09:04Z</dc:date>
    </item>
    <item>
      <title>Re: labels</title>
      <link>https://communities.sas.com/t5/SAS-Programming/labels/m-p/406286#M98896</link>
      <description>&lt;P&gt;Is this the correct format&amp;nbsp; to write proper variable and value label&amp;nbsp; to the variables ???? in this no error is coming . But i want to check the format .&lt;BR /&gt;&lt;BR /&gt;PROC FORMAT lib=_class_s.Grocery_coupons fmtlib;&lt;/P&gt;&lt;P&gt;VALUE Health_food_store&lt;BR /&gt;0='NO'&lt;BR /&gt;1='YES';&lt;/P&gt;&lt;P&gt;VALUE Size_of_store&lt;BR /&gt;1='SMALL'&lt;BR /&gt;2='MEDIUM'&lt;BR /&gt;3='LARGE';&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;VALUE Store_of_organization&lt;BR /&gt;1='EMPHASIZES_PRODUCE'&lt;BR /&gt;2='EMPHASIZES_DELI'&lt;BR /&gt;3='EMPHASIZES_BAKERY'&lt;BR /&gt;4=' NO_EMPHASIS' ;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;VALUE Gender&lt;BR /&gt;0='MALE'&lt;BR /&gt;1='FEMALE';&lt;BR /&gt;&lt;BR /&gt;VALUE Who_Shopping_For&lt;BR /&gt;1='SELF'&lt;BR /&gt;2='SELF_AND_SPOUSE'&lt;BR /&gt;3='SELF_AND_FAMILY';&lt;BR /&gt;&lt;BR /&gt;VALUE Vegetarian&lt;BR /&gt;0='NO'&lt;BR /&gt;1='YES';&lt;/P&gt;&lt;P&gt;VALUE SHOPPING_STYLE&lt;BR /&gt;1= 'Biweekly;inbulk'&lt;BR /&gt;2= 'Weekly;similar_items'&lt;BR /&gt;3= 'often;what_on_sale';&lt;BR /&gt;&lt;BR /&gt;VALUE USE_COUPONS&lt;BR /&gt;1='NO'&lt;BR /&gt;2='From_newspaper'&lt;BR /&gt;3='From_mailing'&lt;BR /&gt;4='From_both';&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;VALUE Carryover&lt;BR /&gt;0='Firstperiod'&lt;BR /&gt;1='No_coupon'&lt;BR /&gt;2='5_percent'&lt;BR /&gt;3='15_percent'&lt;BR /&gt;4='25_percent';&lt;BR /&gt;&lt;BR /&gt;VALUE Value_of_coupon&lt;BR /&gt;1='No_value'&lt;BR /&gt;2='5_percent'&lt;BR /&gt;3='15_percent'&lt;BR /&gt;4='25_percent';&lt;BR /&gt;RUN;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;options fmtsearch =(_class_s.Grocery_coupons);&lt;/P&gt;&lt;P&gt;data _class_s;&lt;BR /&gt;set _class_s.Grocery_coupons;&lt;BR /&gt;format hlthfood Health_food_store. size Size_of_store.&lt;BR /&gt;org Store_of_organization. gender Gender. shopfor Who_Shopping_For.&lt;BR /&gt;veg Vegetarian. style SHOPPING_STYLE. usecoupon USE_COUPONS.&lt;BR /&gt;carry Carryover. coupval Value_of_coupon.;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;proc print data=_class_s;&lt;BR /&gt;run;&lt;/P&gt;</description>
      <pubDate>Sat, 21 Oct 2017 18:40:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/labels/m-p/406286#M98896</guid>
      <dc:creator>mehak</dc:creator>
      <dc:date>2017-10-21T18:40:03Z</dc:date>
    </item>
    <item>
      <title>Re: labels</title>
      <link>https://communities.sas.com/t5/SAS-Programming/labels/m-p/406287#M98897</link>
      <description>&lt;P&gt;Is this the correct format&amp;nbsp; to write proper variable and value label&amp;nbsp; to the variables ???? in this no error is coming . But i want to check the format .&lt;BR /&gt;&lt;BR /&gt;PROC FORMAT lib=_class_s.Grocery_coupons fmtlib;&lt;/P&gt;&lt;P&gt;VALUE Health_food_store&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;BR /&gt;0='NO'&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;BR /&gt;1='YES';&lt;/P&gt;&lt;P&gt;VALUE Size_of_store&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;BR /&gt;1='SMALL'&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;BR /&gt;2='MEDIUM'&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;BR /&gt;3='LARGE';&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;VALUE Store_of_organization&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;BR /&gt;1='EMPHASIZES_PRODUCE'&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;BR /&gt;2='EMPHASIZES_DELI'&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;BR /&gt;3='EMPHASIZES_BAKERY'&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;BR /&gt;4=' NO_EMPHASIS' ;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;VALUE Gender&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;BR /&gt;0='MALE'&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;BR /&gt;1='FEMALE';&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;VALUE Who_Shopping_For&lt;BR /&gt;1='SELF'&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;BR /&gt;2='SELF_AND_SPOUSE'&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;BR /&gt;3='SELF_AND_FAMILY';&lt;BR /&gt;&lt;BR /&gt;VALUE Vegetarian&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;BR /&gt;0='NO'&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;BR /&gt;1='YES';&lt;/P&gt;&lt;P&gt;VALUE SHOPPING_STYLE&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;BR /&gt;1= 'Biweekly;inbulk'&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;BR /&gt;2= 'Weekly;similar_items'&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;BR /&gt;3= 'often;what_on_sale';&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;VALUE USE_COUPONS&lt;BR /&gt;1='NO'&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;BR /&gt;2='From_newspaper'&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;BR /&gt;3='From_mailing'&lt;BR /&gt;4='From_both';&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;VALUE Carryover&lt;BR /&gt;0='Firstperiod'&lt;BR /&gt;1='No_coupon'&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;BR /&gt;2='5_percent'&lt;BR /&gt;3='15_percent'&lt;BR /&gt;4='25_percent';&lt;BR /&gt;&lt;BR /&gt;VALUE Value_of_coupon&lt;BR /&gt;1='No_value'&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;BR /&gt;2='5_percent'&lt;BR /&gt;3='15_percent'&lt;BR /&gt;4='25_percent';&lt;BR /&gt;RUN;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;options fmtsearch =(_class_s.Grocery_coupons);&lt;/P&gt;&lt;P&gt;data _class_s;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;BR /&gt;set _class_s.Grocery_coupons;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;BR /&gt;format hlthfood Health_food_store. size Size_of_store.&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;BR /&gt;org Store_of_organization. gender Gender. shopfor Who_Shopping_For.&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;BR /&gt;veg Vegetarian. style SHOPPING_STYLE. usecoupon USE_COUPONS.&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;BR /&gt;carry Carryover. coupval Value_of_coupon.;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;proc print data=_class_s;&lt;BR /&gt;run;&lt;/P&gt;</description>
      <pubDate>Sat, 21 Oct 2017 18:40:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/labels/m-p/406287#M98897</guid>
      <dc:creator>mehak</dc:creator>
      <dc:date>2017-10-21T18:40:39Z</dc:date>
    </item>
    <item>
      <title>Re: labels</title>
      <link>https://communities.sas.com/t5/SAS-Programming/labels/m-p/406291#M98900</link>
      <description>&lt;P&gt;To check a format, look at the variables you assigned that format to, if they display as you expected.&lt;/P&gt;</description>
      <pubDate>Sat, 21 Oct 2017 19:11:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/labels/m-p/406291#M98900</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2017-10-21T19:11:25Z</dc:date>
    </item>
    <item>
      <title>Re: labels</title>
      <link>https://communities.sas.com/t5/SAS-Programming/labels/m-p/406318#M98914</link>
      <description>&lt;P&gt;You had posted the actual code you ran (including your libname statement and proc import) but, apparently, deleted that post.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you repost it, I'm sure one of us can show you how to correctly run what you're trying to do.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Art, CEO, AnalystFinder.com&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 21 Oct 2017 21:47:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/labels/m-p/406318#M98914</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2017-10-21T21:47:24Z</dc:date>
    </item>
  </channel>
</rss>

