<?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 variable incentive amount calculation in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/variable-incentive-amount-calculation/m-p/819134#M323353</link>
    <description>What is variable incentive amount calculation in SAS in banking domain employees&lt;BR /&gt;Any</description>
    <pubDate>Mon, 20 Jun 2022 16:15:00 GMT</pubDate>
    <dc:creator>Suryak</dc:creator>
    <dc:date>2022-06-20T16:15:00Z</dc:date>
    <item>
      <title>variable incentive amount calculation</title>
      <link>https://communities.sas.com/t5/SAS-Programming/variable-incentive-amount-calculation/m-p/819134#M323353</link>
      <description>What is variable incentive amount calculation in SAS in banking domain employees&lt;BR /&gt;Any</description>
      <pubDate>Mon, 20 Jun 2022 16:15:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/variable-incentive-amount-calculation/m-p/819134#M323353</guid>
      <dc:creator>Suryak</dc:creator>
      <dc:date>2022-06-20T16:15:00Z</dc:date>
    </item>
    <item>
      <title>Re: variable incentive calculation</title>
      <link>https://communities.sas.com/t5/SAS-Programming/variable-incentive-amount-calculation/m-p/819144#M323355</link>
      <description>&lt;P&gt;Have you done your own search on the internet yet? What did you find?&lt;/P&gt;</description>
      <pubDate>Mon, 20 Jun 2022 14:27:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/variable-incentive-amount-calculation/m-p/819144#M323355</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2022-06-20T14:27:14Z</dc:date>
    </item>
    <item>
      <title>Re: variable incentive calculation</title>
      <link>https://communities.sas.com/t5/SAS-Programming/variable-incentive-amount-calculation/m-p/819145#M323356</link>
      <description>No i want know what is variable incentive calculation could you please any example</description>
      <pubDate>Mon, 20 Jun 2022 14:35:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/variable-incentive-amount-calculation/m-p/819145#M323356</guid>
      <dc:creator>Suryak</dc:creator>
      <dc:date>2022-06-20T14:35:56Z</dc:date>
    </item>
    <item>
      <title>Re: variable incentive calculation</title>
      <link>https://communities.sas.com/t5/SAS-Programming/variable-incentive-amount-calculation/m-p/819152#M323357</link>
      <description>&lt;P&gt;I never heard of it, that's why you would be better off doing a search yourself.&lt;/P&gt;</description>
      <pubDate>Mon, 20 Jun 2022 14:56:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/variable-incentive-amount-calculation/m-p/819152#M323357</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2022-06-20T14:56:20Z</dc:date>
    </item>
    <item>
      <title>Re: variable incentive calculation</title>
      <link>https://communities.sas.com/t5/SAS-Programming/variable-incentive-amount-calculation/m-p/819161#M323358</link>
      <description>&lt;P&gt;Details matter: WHAT exactly varies?&lt;/P&gt;
&lt;P&gt;What is the condition, i.e. value of variable(s) that make the calculation apply differently to different records.&lt;/P&gt;
&lt;P&gt;Example of the data that you have.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Dummy code as a sort of template:&lt;/P&gt;
&lt;PRE&gt;data want;
   set have;
   if variable=condition1 then incentive = someothervariable* 1.10; /*a 10 % increase of something*/
  else if variable=condition2 then incentive=someothervariable* 1.05; /* a 5% increase of something*/
run;&lt;/PRE&gt;
&lt;P&gt;up to you to define the conditions, the base value and how the incentive is applied.&lt;/P&gt;</description>
      <pubDate>Mon, 20 Jun 2022 15:21:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/variable-incentive-amount-calculation/m-p/819161#M323358</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2022-06-20T15:21:56Z</dc:date>
    </item>
    <item>
      <title>Re: variable incentive calculation</title>
      <link>https://communities.sas.com/t5/SAS-Programming/variable-incentive-amount-calculation/m-p/819162#M323359</link>
      <description>variable incentive amount calculation using&lt;BR /&gt;Sas code</description>
      <pubDate>Mon, 20 Jun 2022 15:27:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/variable-incentive-amount-calculation/m-p/819162#M323359</guid>
      <dc:creator>Suryak</dc:creator>
      <dc:date>2022-06-20T15:27:23Z</dc:date>
    </item>
    <item>
      <title>Re: variable incentive calculation</title>
      <link>https://communities.sas.com/t5/SAS-Programming/variable-incentive-amount-calculation/m-p/819169#M323363</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/427994"&gt;@Suryak&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;variable incentive amount calculation using&lt;BR /&gt;Sas code&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Hello, &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/427994"&gt;@Suryak&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I point out the obvious: If you keep repeating the same information over and over again, that doesn't help. Telling us more about "variable incentive calculation" might help.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I also now point out the obvious #2. Using an Internet search engine, you will get results in about 10 seconds. Asking here, so far it has been over 2 hours since you asked the question, and no one has any idea how to help you, and no one knows what you mean.&lt;/P&gt;</description>
      <pubDate>Mon, 20 Jun 2022 16:18:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/variable-incentive-amount-calculation/m-p/819169#M323363</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2022-06-20T16:18:57Z</dc:date>
    </item>
  </channel>
</rss>

