<?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>Create Slots in time interval</title><link>https://community.appian.com/discussions/f/rules/25527/create-slots-in-time-interval</link><description>I want to Create time slots for specific interval and get a List of all slots (like 20 min or 30 min slot) for Interval.</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: Create Slots in time interval</title><link>https://community.appian.com/thread/99564?ContentTypeID=1</link><pubDate>Tue, 16 Aug 2022 11:15:25 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:916683b2-a0dc-4bf3-a6de-f609bcdea114</guid><dc:creator>Harshit Bumb (Appyzie)</dc:creator><description>&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;a!localVariables(
  local!startTime: datetime(2022,8,16,12,00,00),
  local!slotInterval: 20,
  local!slots: 6,
  a!forEach(
    items: enumerate(local!slots),
    expression: local!startTime+intervalds(0,local!slotInterval*fv!item,0)
  )
)&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>