<?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 A Simple Blue Prism Code for Calculating Last Sunday and Saturday Dates in Product Forum</title>
    <link>https://community.blueprism.com/t5/Product-Forum/A-Simple-Blue-Prism-Code-for-Calculating-Last-Sunday-and/m-p/60247#M13748</link>
    <description>&lt;P&gt;I wanted to share a simple piece of Blue Prism code that can be useful if you need to calculate the dates for the last Sunday and Saturday based on the current date.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Code options as Below&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="26582.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/26713iD15A0773DED4BD50/image-size/large?v=v2&amp;amp;px=999" role="button" title="26582.png" alt="26582.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Input and Output Variables all in Date Format&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="26583.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/26711i1A8214ED2BFE3736/image-size/large?v=v2&amp;amp;px=999" role="button" title="26583.png" alt="26583.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Code:&lt;/STRONG&gt;&lt;/P&gt;
&lt;PRE&gt;
&lt;DIV class="bg-black rounded-md"&gt;
&lt;DIV class="flex items-center relative text-gray-200 bg-gray-800 gizmo:dark:bg-token-surface-primary px-4 py-2 text-xs font-sans justify-between rounded-t-md"&gt;&lt;CODE class="!whitespace-pre hljs language-vb.net"&gt;Dim daysUntilSunday As Integer
&lt;/CODE&gt;&lt;/DIV&gt;
&lt;DIV class="flex items-center relative text-gray-200 bg-gray-800 gizmo:dark:bg-token-surface-primary px-4 py-2 text-xs font-sans justify-between rounded-t-md"&gt;&lt;CODE class="!whitespace-pre hljs language-vb.net"&gt;Dim daysUntilSaturday As Integer&amp;nbsp;&lt;/CODE&gt;&lt;/DIV&gt;

&lt;DIV class="flex items-center relative text-gray-200 bg-gray-800 gizmo:dark:bg-token-surface-primary px-4 py-2 text-xs font-sans justify-between rounded-t-md"&gt;&lt;CODE class="!whitespace-pre hljs language-vb.net"&gt;Try
&lt;/CODE&gt;&lt;/DIV&gt;
&lt;DIV class="flex items-center relative text-gray-200 bg-gray-800 gizmo:dark:bg-token-surface-primary px-4 py-2 text-xs font-sans justify-between rounded-t-md"&gt;&lt;CODE class="!whitespace-pre hljs language-vb.net"&gt;daysUntilSunday = (today.DayOfWeek - DayOfWeek.Sunday + 7) Mod 7&amp;nbsp;&lt;/CODE&gt;&lt;/DIV&gt;
&lt;DIV class="flex items-center relative text-gray-200 bg-gray-800 gizmo:dark:bg-token-surface-primary px-4 py-2 text-xs font-sans justify-between rounded-t-md"&gt;&lt;CODE class="!whitespace-pre hljs language-vb.net"&gt;&amp;nbsp; &amp;nbsp; If daysUntilSunday = 0 Then&lt;SPAN style="background-color: #f5f5f5; color: #333333; font-family: Menlo, Monaco, Consolas, 'Courier New', monospace;"&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/DIV&gt;
&lt;DIV class="flex items-center relative text-gray-200 bg-gray-800 gizmo:dark:bg-token-surface-primary px-4 py-2 text-xs font-sans justify-between rounded-t-md"&gt;&lt;SPAN style="background-color: #efefef; color: #000000; font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace; font-size: 1em; word-spacing: normal; white-space: normal;"&gt;&amp;nbsp; LastSunday = today.AddDays(-7)
&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV class="flex items-center relative text-gray-200 bg-gray-800 gizmo:dark:bg-token-surface-primary px-4 py-2 text-xs font-sans justify-between rounded-t-md"&gt;&lt;SPAN style="background-color: #efefef; color: #000000; font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace; font-size: 1em; word-spacing: normal; white-space: normal;"&gt;Else&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV class="flex items-center relative text-gray-200 bg-gray-800 gizmo:dark:bg-token-surface-primary px-4 py-2 text-xs font-sans justify-between rounded-t-md"&gt;&lt;SPAN style="background-color: #efefef; color: #000000; font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace; font-size: 1em; word-spacing: normal; white-space: normal;"&gt;&amp;nbsp; LastSunday = today.AddDays(-daysUntilSunday - 7)
&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV class="flex items-center relative text-gray-200 bg-gray-800 gizmo:dark:bg-token-surface-primary px-4 py-2 text-xs font-sans justify-between rounded-t-md"&gt;&lt;SPAN style="background-color: #efefef; color: #000000; font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace; font-size: 1em; word-spacing: normal; white-space: normal;"&gt;End If&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;

&lt;DIV class="flex items-center relative text-gray-200 bg-gray-800 gizmo:dark:bg-token-surface-primary px-4 py-2 text-xs font-sans justify-between rounded-t-md"&gt;&lt;SPAN style="background-color: #efefef; color: #000000; font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace; font-size: 1em; word-spacing: normal; white-space: normal;"&gt;Finally&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV class="flex items-center relative text-gray-200 bg-gray-800 gizmo:dark:bg-token-surface-primary px-4 py-2 text-xs font-sans justify-between rounded-t-md"&gt;&lt;SPAN style="background-color: #efefef; color: #000000; font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace; font-size: 1em; word-spacing: normal; white-space: normal;"&gt;End Try&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;

&lt;DIV class="flex items-center relative text-gray-200 bg-gray-800 gizmo:dark:bg-token-surface-primary px-4 py-2 text-xs font-sans justify-between rounded-t-md"&gt;&lt;SPAN style="background-color: #efefef; color: #000000; font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace; font-size: 1em; word-spacing: normal; white-space: normal;"&gt;Try
    daysUntilSaturday = (today.DayOfWeek - DayOfWeek.Saturday + 7) Mod 7
&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV class="flex items-center relative text-gray-200 bg-gray-800 gizmo:dark:bg-token-surface-primary px-4 py-2 text-xs font-sans justify-between rounded-t-md"&gt;&lt;SPAN style="background-color: #efefef; color: #000000; font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace; font-size: 1em; word-spacing: normal; white-space: normal;"&gt;&amp;nbsp; &amp;nbsp;If daysUntilSaturday = 0 Then
&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV class="flex items-center relative text-gray-200 bg-gray-800 gizmo:dark:bg-token-surface-primary px-4 py-2 text-xs font-sans justify-between rounded-t-md"&gt;&lt;SPAN style="background-color: #efefef; color: #000000; font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace; font-size: 1em; word-spacing: normal; white-space: normal;"&gt;&amp;nbsp; &amp;nbsp;LastSaturday = today.AddDays(-7)
&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV class="flex items-center relative text-gray-200 bg-gray-800 gizmo:dark:bg-token-surface-primary px-4 py-2 text-xs font-sans justify-between rounded-t-md"&gt;&lt;SPAN style="background-color: #efefef; color: #000000; font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace; font-size: 1em; word-spacing: normal; white-space: normal;"&gt;Else&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV class="flex items-center relative text-gray-200 bg-gray-800 gizmo:dark:bg-token-surface-primary px-4 py-2 text-xs font-sans justify-between rounded-t-md"&gt;&lt;SPAN style="background-color: #efefef; color: #000000; font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace; font-size: 1em; word-spacing: normal; white-space: normal;"&gt;LastSaturday = today.AddDays(-daysUntilSaturday)&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV class="flex items-center relative text-gray-200 bg-gray-800 gizmo:dark:bg-token-surface-primary px-4 py-2 text-xs font-sans justify-between rounded-t-md"&gt;&lt;SPAN style="background-color: #efefef; color: #000000; font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace; font-size: 1em; word-spacing: normal; white-space: normal;"&gt;End If&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV class="flex items-center relative text-gray-200 bg-gray-800 gizmo:dark:bg-token-surface-primary px-4 py-2 text-xs font-sans justify-between rounded-t-md"&gt;&lt;SPAN style="background-color: #efefef; color: #000000; font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace; font-size: 1em; word-spacing: normal; white-space: normal;"&gt;Finally&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV class="flex items-center relative text-gray-200 bg-gray-800 gizmo:dark:bg-token-surface-primary px-4 py-2 text-xs font-sans justify-between rounded-t-md"&gt;&lt;SPAN style="background-color: #efefef; color: #000000; font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace; font-size: 1em; word-spacing: normal; white-space: normal;"&gt;End Try&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;


&lt;/DIV&gt;


&lt;/PRE&gt;
&lt;P&gt;This code is quite straightforward and serves the purpose of finding the last Sunday and Saturday relative to the current date. You can integrate this code into your Blue Prism processes when such date calculations are required.&lt;/P&gt;
&lt;P&gt;Feel free to modify and adapt this code to suit your specific needs. I hope this code proves helpful to others facing similar challenges. If you have any questions or need further assistance, please don't hesitate to ask.&lt;/P&gt;
&lt;P&gt;Happy automating!&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;uzer shaikh&lt;BR /&gt;------------------------------&lt;/P&gt;</description>
    <pubDate>Sun, 05 Nov 2023 17:29:00 GMT</pubDate>
    <dc:creator>uzershaikh1</dc:creator>
    <dc:date>2023-11-05T17:29:00Z</dc:date>
    <item>
      <title>A Simple Blue Prism Code for Calculating Last Sunday and Saturday Dates</title>
      <link>https://community.blueprism.com/t5/Product-Forum/A-Simple-Blue-Prism-Code-for-Calculating-Last-Sunday-and/m-p/60247#M13748</link>
      <description>&lt;P&gt;I wanted to share a simple piece of Blue Prism code that can be useful if you need to calculate the dates for the last Sunday and Saturday based on the current date.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Code options as Below&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="26582.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/26713iD15A0773DED4BD50/image-size/large?v=v2&amp;amp;px=999" role="button" title="26582.png" alt="26582.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Input and Output Variables all in Date Format&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="26583.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/26711i1A8214ED2BFE3736/image-size/large?v=v2&amp;amp;px=999" role="button" title="26583.png" alt="26583.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Code:&lt;/STRONG&gt;&lt;/P&gt;
&lt;PRE&gt;
&lt;DIV class="bg-black rounded-md"&gt;
&lt;DIV class="flex items-center relative text-gray-200 bg-gray-800 gizmo:dark:bg-token-surface-primary px-4 py-2 text-xs font-sans justify-between rounded-t-md"&gt;&lt;CODE class="!whitespace-pre hljs language-vb.net"&gt;Dim daysUntilSunday As Integer
&lt;/CODE&gt;&lt;/DIV&gt;
&lt;DIV class="flex items-center relative text-gray-200 bg-gray-800 gizmo:dark:bg-token-surface-primary px-4 py-2 text-xs font-sans justify-between rounded-t-md"&gt;&lt;CODE class="!whitespace-pre hljs language-vb.net"&gt;Dim daysUntilSaturday As Integer&amp;nbsp;&lt;/CODE&gt;&lt;/DIV&gt;

&lt;DIV class="flex items-center relative text-gray-200 bg-gray-800 gizmo:dark:bg-token-surface-primary px-4 py-2 text-xs font-sans justify-between rounded-t-md"&gt;&lt;CODE class="!whitespace-pre hljs language-vb.net"&gt;Try
&lt;/CODE&gt;&lt;/DIV&gt;
&lt;DIV class="flex items-center relative text-gray-200 bg-gray-800 gizmo:dark:bg-token-surface-primary px-4 py-2 text-xs font-sans justify-between rounded-t-md"&gt;&lt;CODE class="!whitespace-pre hljs language-vb.net"&gt;daysUntilSunday = (today.DayOfWeek - DayOfWeek.Sunday + 7) Mod 7&amp;nbsp;&lt;/CODE&gt;&lt;/DIV&gt;
&lt;DIV class="flex items-center relative text-gray-200 bg-gray-800 gizmo:dark:bg-token-surface-primary px-4 py-2 text-xs font-sans justify-between rounded-t-md"&gt;&lt;CODE class="!whitespace-pre hljs language-vb.net"&gt;&amp;nbsp; &amp;nbsp; If daysUntilSunday = 0 Then&lt;SPAN style="background-color: #f5f5f5; color: #333333; font-family: Menlo, Monaco, Consolas, 'Courier New', monospace;"&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/DIV&gt;
&lt;DIV class="flex items-center relative text-gray-200 bg-gray-800 gizmo:dark:bg-token-surface-primary px-4 py-2 text-xs font-sans justify-between rounded-t-md"&gt;&lt;SPAN style="background-color: #efefef; color: #000000; font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace; font-size: 1em; word-spacing: normal; white-space: normal;"&gt;&amp;nbsp; LastSunday = today.AddDays(-7)
&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV class="flex items-center relative text-gray-200 bg-gray-800 gizmo:dark:bg-token-surface-primary px-4 py-2 text-xs font-sans justify-between rounded-t-md"&gt;&lt;SPAN style="background-color: #efefef; color: #000000; font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace; font-size: 1em; word-spacing: normal; white-space: normal;"&gt;Else&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV class="flex items-center relative text-gray-200 bg-gray-800 gizmo:dark:bg-token-surface-primary px-4 py-2 text-xs font-sans justify-between rounded-t-md"&gt;&lt;SPAN style="background-color: #efefef; color: #000000; font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace; font-size: 1em; word-spacing: normal; white-space: normal;"&gt;&amp;nbsp; LastSunday = today.AddDays(-daysUntilSunday - 7)
&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV class="flex items-center relative text-gray-200 bg-gray-800 gizmo:dark:bg-token-surface-primary px-4 py-2 text-xs font-sans justify-between rounded-t-md"&gt;&lt;SPAN style="background-color: #efefef; color: #000000; font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace; font-size: 1em; word-spacing: normal; white-space: normal;"&gt;End If&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;

&lt;DIV class="flex items-center relative text-gray-200 bg-gray-800 gizmo:dark:bg-token-surface-primary px-4 py-2 text-xs font-sans justify-between rounded-t-md"&gt;&lt;SPAN style="background-color: #efefef; color: #000000; font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace; font-size: 1em; word-spacing: normal; white-space: normal;"&gt;Finally&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV class="flex items-center relative text-gray-200 bg-gray-800 gizmo:dark:bg-token-surface-primary px-4 py-2 text-xs font-sans justify-between rounded-t-md"&gt;&lt;SPAN style="background-color: #efefef; color: #000000; font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace; font-size: 1em; word-spacing: normal; white-space: normal;"&gt;End Try&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;

&lt;DIV class="flex items-center relative text-gray-200 bg-gray-800 gizmo:dark:bg-token-surface-primary px-4 py-2 text-xs font-sans justify-between rounded-t-md"&gt;&lt;SPAN style="background-color: #efefef; color: #000000; font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace; font-size: 1em; word-spacing: normal; white-space: normal;"&gt;Try
    daysUntilSaturday = (today.DayOfWeek - DayOfWeek.Saturday + 7) Mod 7
&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV class="flex items-center relative text-gray-200 bg-gray-800 gizmo:dark:bg-token-surface-primary px-4 py-2 text-xs font-sans justify-between rounded-t-md"&gt;&lt;SPAN style="background-color: #efefef; color: #000000; font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace; font-size: 1em; word-spacing: normal; white-space: normal;"&gt;&amp;nbsp; &amp;nbsp;If daysUntilSaturday = 0 Then
&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV class="flex items-center relative text-gray-200 bg-gray-800 gizmo:dark:bg-token-surface-primary px-4 py-2 text-xs font-sans justify-between rounded-t-md"&gt;&lt;SPAN style="background-color: #efefef; color: #000000; font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace; font-size: 1em; word-spacing: normal; white-space: normal;"&gt;&amp;nbsp; &amp;nbsp;LastSaturday = today.AddDays(-7)
&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV class="flex items-center relative text-gray-200 bg-gray-800 gizmo:dark:bg-token-surface-primary px-4 py-2 text-xs font-sans justify-between rounded-t-md"&gt;&lt;SPAN style="background-color: #efefef; color: #000000; font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace; font-size: 1em; word-spacing: normal; white-space: normal;"&gt;Else&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV class="flex items-center relative text-gray-200 bg-gray-800 gizmo:dark:bg-token-surface-primary px-4 py-2 text-xs font-sans justify-between rounded-t-md"&gt;&lt;SPAN style="background-color: #efefef; color: #000000; font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace; font-size: 1em; word-spacing: normal; white-space: normal;"&gt;LastSaturday = today.AddDays(-daysUntilSaturday)&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV class="flex items-center relative text-gray-200 bg-gray-800 gizmo:dark:bg-token-surface-primary px-4 py-2 text-xs font-sans justify-between rounded-t-md"&gt;&lt;SPAN style="background-color: #efefef; color: #000000; font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace; font-size: 1em; word-spacing: normal; white-space: normal;"&gt;End If&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV class="flex items-center relative text-gray-200 bg-gray-800 gizmo:dark:bg-token-surface-primary px-4 py-2 text-xs font-sans justify-between rounded-t-md"&gt;&lt;SPAN style="background-color: #efefef; color: #000000; font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace; font-size: 1em; word-spacing: normal; white-space: normal;"&gt;Finally&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV class="flex items-center relative text-gray-200 bg-gray-800 gizmo:dark:bg-token-surface-primary px-4 py-2 text-xs font-sans justify-between rounded-t-md"&gt;&lt;SPAN style="background-color: #efefef; color: #000000; font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace; font-size: 1em; word-spacing: normal; white-space: normal;"&gt;End Try&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;


&lt;/DIV&gt;


&lt;/PRE&gt;
&lt;P&gt;This code is quite straightforward and serves the purpose of finding the last Sunday and Saturday relative to the current date. You can integrate this code into your Blue Prism processes when such date calculations are required.&lt;/P&gt;
&lt;P&gt;Feel free to modify and adapt this code to suit your specific needs. I hope this code proves helpful to others facing similar challenges. If you have any questions or need further assistance, please don't hesitate to ask.&lt;/P&gt;
&lt;P&gt;Happy automating!&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;uzer shaikh&lt;BR /&gt;------------------------------&lt;/P&gt;</description>
      <pubDate>Sun, 05 Nov 2023 17:29:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/A-Simple-Blue-Prism-Code-for-Calculating-Last-Sunday-and/m-p/60247#M13748</guid>
      <dc:creator>uzershaikh1</dc:creator>
      <dc:date>2023-11-05T17:29:00Z</dc:date>
    </item>
    <item>
      <title>RE: A Simple Blue Prism Code for Calculating Last Sunday and Saturday Dates</title>
      <link>https://community.blueprism.com/t5/Product-Forum/A-Simple-Blue-Prism-Code-for-Calculating-Last-Sunday-and/m-p/60248#M13749</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Thanks for shared (:&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Leonardo Soares&lt;BR /&gt;RPA Developer Tech Leader&lt;BR /&gt;Bridge Consulting&lt;BR /&gt;América/Brazil&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Sun, 05 Nov 2023 19:47:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/A-Simple-Blue-Prism-Code-for-Calculating-Last-Sunday-and/m-p/60248#M13749</guid>
      <dc:creator>LeonardoSQueiroz</dc:creator>
      <dc:date>2023-11-05T19:47:00Z</dc:date>
    </item>
  </channel>
</rss>

