<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://community.appian.com/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>To find if a given date lies in the last week of the month</title><link>https://community.appian.com/discussions/f/general/28190/to-find-if-a-given-date-lies-in-the-last-week-of-the-month</link><description>Hi, 
 I need to find out if a given date is in the last week of the month. For example 27th of March 2023 is in the last week of the March month. How can I achieve this? Please give me the suggestions. 
 Thanks and Regards, 
 Brinda Sateesh</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: To find if a given date lies in the last week of the month</title><link>https://community.appian.com/thread/110053?ContentTypeID=1</link><pubDate>Mon, 27 Mar 2023 06:03:04 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:e403f9ff-c36b-4e4a-b6b2-2410bd485f9f</guid><dc:creator>Brinda</dc:creator><description>&lt;p&gt;It worked.&amp;nbsp; Thank you.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: To find if a given date lies in the last week of the month</title><link>https://community.appian.com/thread/110052?ContentTypeID=1</link><pubDate>Mon, 27 Mar 2023 05:43:34 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:290ed9ac-fb5f-4947-9cf2-205b66e67ee7</guid><dc:creator>sanchitg0002</dc:creator><description>&lt;p&gt;This should work.&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;a!localVariables(
  local!monthEndDay: weekday(eomonth(ri!date, 0), 3),
  local!endWeekStartDate: eomonth(ri!date, 0) - local!monthEndDay,
  or(ri!date &amp;gt;= local!endWeekStartDate)
)&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>