<?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>How to merge two rows in  a grid</title><link>https://community.appian.com/discussions/f/user-interface/18278/how-to-merge-two-rows-in-a-grid</link><description>i have requirement that how many of country we select those many rows are populating in grid ,i want to restrict those many rows to single row.any suggestion</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: How to merge two rows in  a grid</title><link>https://community.appian.com/thread/71932?ContentTypeID=1</link><pubDate>Thu, 06 Feb 2020 13:31:42 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:752a7ba7-1d6b-4809-abaa-fbb49c706f5c</guid><dc:creator>Krishna Chaitanya Mallavarapu</dc:creator><description>&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;a!localVariables(
  local!selectedCountrys,
  {
    a!multipleDropdownField(
      label: &amp;quot;Country&amp;quot;,
      placeholderLabel: &amp;quot;---select---&amp;quot;,
      choiceLabels: {
        &amp;quot;Australia&amp;quot;,
        &amp;quot;Newzeland&amp;quot;,
        &amp;quot;India&amp;quot;
      },
      choiceValues: {
        &amp;quot;Australia&amp;quot;,
        &amp;quot;Newzeland&amp;quot;,
        &amp;quot;India&amp;quot;
      },
      value: local!selectedCountrys,
      saveInto: local!selectedCountrys,
      
    ),
    a!gridField(
      label: &amp;quot;Slected Country&amp;#39;s&amp;quot;,
      labelPosition: &amp;quot;ABOVE&amp;quot;,
      data: if(
        or(
          isnull(
            local!selectedCountrys
          ),
          length(
            local!selectedCountrys
          ) = 0
        ),
        {},
        {
          {
            name: tostring(
              local!selectedCountrys
            )
          }
        }
      ),
      columns: {
        a!gridColumn(
          label: &amp;quot;Names&amp;quot;,
          sortField: &amp;quot;name&amp;quot;,
          value: fv!row.name
        )
      }
    )
  }
)&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;can you check this code one&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to merge two rows in  a grid</title><link>https://community.appian.com/thread/71931?ContentTypeID=1</link><pubDate>Thu, 06 Feb 2020 13:08:58 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:014919f6-df6e-4abd-be23-818bc14d399e</guid><dc:creator>Krishna Chaitanya Mallavarapu</dc:creator><description>&lt;p&gt;so in one row you need&amp;nbsp;&lt;span&gt;Australia,Newzeland&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to merge two rows in  a grid</title><link>https://community.appian.com/thread/71930?ContentTypeID=1</link><pubDate>Thu, 06 Feb 2020 13:06:34 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:367e8cf8-c22b-481e-a684-986730128ef1</guid><dc:creator>Salma Khan</dc:creator><description>&lt;p&gt;for example I am choosing Australia and Newzeland&amp;nbsp; in first interface when I click ok second interface will be having grid that displays two rows one for Australia and one for Newzeland but I want to restrict that row to one&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to merge two rows in  a grid</title><link>https://community.appian.com/thread/71927?ContentTypeID=1</link><pubDate>Thu, 06 Feb 2020 11:44:27 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:787bb52a-beb6-4618-95a4-b5d6f2cd62f5</guid><dc:creator>Krishna Chaitanya Mallavarapu</dc:creator><description>&lt;p&gt;can you explain you&amp;nbsp;&lt;span&gt;requirement&amp;nbsp; with example&amp;nbsp;&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>