<?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>Group same field value when displaying</title><link>https://community.appian.com/discussions/f/general/20512/group-same-field-value-when-displaying</link><description>If I have table values below from a database table. 
 
 
 
 Column A 
 Column B 
 Column C 
 Column D 
 
 
 Value 1 
 Value 2 
 Value 3 
 Value 4 
 
 
 Value 1 
 Value 2 
 Value 5 
 Value 6 
 
 
 Value 1 
 Value 2 
 Value 7 
 Value 8 
 
 
 
 Is there</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: Group same field value when displaying</title><link>https://community.appian.com/thread/79975?ContentTypeID=1</link><pubDate>Tue, 02 Mar 2021 16:21:42 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:d7f9f7c3-e343-48e2-aefc-27fe86d7f9ce</guid><dc:creator>victor</dc:creator><description>&lt;p&gt;Thanks! Will try this out.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Group same field value when displaying</title><link>https://community.appian.com/thread/79973?ContentTypeID=1</link><pubDate>Tue, 02 Mar 2021 16:01:27 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:c5b8072d-cea4-4989-bbfc-2f4e9790ce63</guid><dc:creator>Danny Verb</dc:creator><description>&lt;p&gt;There isn&amp;#39;t an easy way to have separate grid cells. What you can do is display your items in a list or add your down dividers. I have an example below.&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="java"&gt;a!localVariables(
  local!data: {
    a!map(
      col1: &amp;quot;Hello&amp;quot;,
      col2: {
        &amp;quot;nested 1&amp;quot;,
        &amp;quot;nested 2&amp;quot;,
        &amp;quot;nested 3&amp;quot;
      }
    ),
    a!map(
      col1: &amp;quot;World&amp;quot;,
      col2: {
        &amp;quot;nested 1&amp;quot;,
        &amp;quot;nested 2&amp;quot;,
        &amp;quot;nested 3&amp;quot;
      }
    )
  },
  a!gridLayout(
    label: &amp;quot;My Data&amp;quot;,
    headerCells: {
      a!gridLayoutHeaderCell(
        label: &amp;quot;Column 1&amp;quot;
      ),
      a!gridLayoutHeaderCell(
        label: &amp;quot;Column 2&amp;quot;
      ),
      a!gridLayoutHeaderCell(
        label: &amp;quot;Column 2 - Alt&amp;quot;
      )
    },
    rows: a!forEach(
      local!data,
      a!gridRowLayout(
        contents: {
          a!textField(
            readOnly: true,
            value: fv!item.col1
          ),
          a!richTextDisplayField(
            value: a!richTextBulletedList(
              items: a!forEach(
                fv!item.col2,
                a!richTextItem(
                  text: fv!item
                )
              )
            )
          ),
          a!richTextDisplayField(
            value: a!forEach(
              fv!item.col2,
              a!richTextItem(
                text: fv!item&amp;amp;char(10)&amp;amp;&amp;quot;_________________________&amp;quot;&amp;amp;char(10)
              )
            )
          )
        }
      )
    )
  )
)&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>