<?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: Limit number of times Target Activity is viewed in Adobe Target Questions</title>
    <link>https://experienceleaguecommunities.adobe.com/t5/adobe-target-questions/limit-number-of-times-target-activity-is-viewed/m-p/436407#M7289</link>
    <description>&lt;P&gt;Hi &lt;LI-USER uid="17444413"&gt;&lt;/LI-USER&gt;,&lt;/P&gt;&lt;P&gt;I agree this is likely not possibly with Analytics segments alone. You need a Target profile script to help with counting prior impressions. Here in the other post I walk through how to do this sort of thing. The use case is similar to yours I think.&lt;/P&gt;&lt;P&gt;&lt;A href="https://experienceleaguecommunities.adobe.com/t5/adobe-target-questions/show-experience-3-times-in-one-at-activity/td-p/435107" target="_blank"&gt;Solved: Show experience 3 times in one AT activity - Adobe Experience League Community - 435107&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;</description>
    <pubDate>Thu, 06 Jan 2022 17:31:27 GMT</pubDate>
    <dc:creator>Ryan_Roberts_</dc:creator>
    <dc:date>2022-01-06T17:31:27Z</dc:date>
    <item>
      <title>Limit number of times Target Activity is viewed</title>
      <link>https://experienceleaguecommunities.adobe.com/t5/adobe-target-questions/limit-number-of-times-target-activity-is-viewed/m-p/435807#M7271</link>
      <description>&lt;P&gt;Hi!&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've created a Target Activity using experience cloud segments (specifically from Analytics) and I would like to know how can I limit the number of times a visitor sees the activity.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is the segment I've created. Here's the logic: If a visitor sees that page within their visit, them I'll show a specific message to them whenever they return to my home home. But I would like to show the specific message just a certain number of times (for example 5) then, the message should be off for them or they will have to be no longer in the activity. Which is the best way to do it? Taking into consideration that I'm creating segments in Analytics.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Captura de Pantalla 2021-12-29 a la(s) 17.07.48.png" style="width: 999px;"&gt;&lt;img src="https://experienceleaguecommunities.adobe.com/t5/image/serverpage/image-id/37622i38A6AD7F414D9244/image-size/large/is-moderation-mode/true?v=v2&amp;amp;px=999" role="button" title="Captura de Pantalla 2021-12-29 a la(s) 17.07.48.png" alt="Captura de Pantalla 2021-12-29 a la(s) 17.07.48.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks a lot for your help &lt;img class="lia-deferred-image lia-image-emoji" src="https://experienceleaguecommunities.adobe.com/html/@31B4D6D7B3510763F3CBB2AAB7997408/emoticons/1f642.png" alt=":slightly_smiling_face:" title=":slightly_smiling_face:" /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 29 Dec 2021 22:14:43 GMT</pubDate>
      <guid>https://experienceleaguecommunities.adobe.com/t5/adobe-target-questions/limit-number-of-times-target-activity-is-viewed/m-p/435807#M7271</guid>
      <dc:creator>renatoz28</dc:creator>
      <dc:date>2021-12-29T22:14:43Z</dc:date>
    </item>
    <item>
      <title>Re: Limit number of times Target Activity is viewed</title>
      <link>https://experienceleaguecommunities.adobe.com/t5/adobe-target-questions/limit-number-of-times-target-activity-is-viewed/m-p/435909#M7274</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;LI-USER uid="17444413"&gt;&lt;/LI-USER&gt;&amp;nbsp;- 4-8 hrs delay to reflect the analytics segment data available in Experience Cloud(ie: Adobe Target).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would suggest you to create profile script to achieve the same. sample code below.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;var freq = user.get("Impression") || 0;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;freq+=1;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;if (freq &amp;lt; 100)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;{&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;return freq;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 31 Dec 2021 02:44:38 GMT</pubDate>
      <guid>https://experienceleaguecommunities.adobe.com/t5/adobe-target-questions/limit-number-of-times-target-activity-is-viewed/m-p/435909#M7274</guid>
      <dc:creator>MA1985_CG</dc:creator>
      <dc:date>2021-12-31T02:44:38Z</dc:date>
    </item>
    <item>
      <title>Re: Limit number of times Target Activity is viewed</title>
      <link>https://experienceleaguecommunities.adobe.com/t5/adobe-target-questions/limit-number-of-times-target-activity-is-viewed/m-p/436407#M7289</link>
      <description>&lt;P&gt;Hi &lt;LI-USER uid="17444413"&gt;&lt;/LI-USER&gt;,&lt;/P&gt;&lt;P&gt;I agree this is likely not possibly with Analytics segments alone. You need a Target profile script to help with counting prior impressions. Here in the other post I walk through how to do this sort of thing. The use case is similar to yours I think.&lt;/P&gt;&lt;P&gt;&lt;A href="https://experienceleaguecommunities.adobe.com/t5/adobe-target-questions/show-experience-3-times-in-one-at-activity/td-p/435107" target="_blank"&gt;Solved: Show experience 3 times in one AT activity - Adobe Experience League Community - 435107&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;</description>
      <pubDate>Thu, 06 Jan 2022 17:31:27 GMT</pubDate>
      <guid>https://experienceleaguecommunities.adobe.com/t5/adobe-target-questions/limit-number-of-times-target-activity-is-viewed/m-p/436407#M7289</guid>
      <dc:creator>Ryan_Roberts_</dc:creator>
      <dc:date>2022-01-06T17:31:27Z</dc:date>
    </item>
  </channel>
</rss>

