<?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>Interface</title><link>https://community.appian.com/discussions/f/user-interface/25983/interface</link><description>I am using a editable grid in that there are six columns (column1,2,3,4,5,6) after adding rows to that columns I want add a row at the end for column3,4,5,6 only for calculating the total value. Is that possible in editable grid</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: Interface</title><link>https://community.appian.com/thread/102067?ContentTypeID=1</link><pubDate>Thu, 29 Sep 2022 10:27:24 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:c1fc1f7f-321d-4b8f-88dd-65b9f824937d</guid><dc:creator>Harshit Bumb (Appyzie)</dc:creator><description>&lt;p&gt;A suggestion, line 39: You can use fv!isLast instead of the condition. Also, adding a grid row layout outside should be less complex and easy to manage.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Interface</title><link>https://community.appian.com/thread/102062?ContentTypeID=1</link><pubDate>Thu, 29 Sep 2022 10:22:52 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:d788ffde-2e1f-47f8-bed9-bda00da532e4</guid><dc:creator>udhayakumarm000856</dc:creator><description>&lt;p&gt;thanks its worked&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Interface</title><link>https://community.appian.com/thread/101667?ContentTypeID=1</link><pubDate>Thu, 22 Sep 2022 11:49:49 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:fab09ff1-5e04-4f44-b71c-a1951969e4e8</guid><dc:creator>deepakg681722</dc:creator><description>&lt;p&gt;Something like this you can build.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;a!localVariables(
  local!gridData: a!map(
    col1: &amp;quot;&amp;quot;,
    col2: &amp;quot;&amp;quot;,
    col3: &amp;quot;&amp;quot;,
    col4: &amp;quot;&amp;quot;,
    col5: &amp;quot;&amp;quot;,
    col6: &amp;quot;&amp;quot;
  ),
  a!gridLayout(
    headerCells: {
      a!gridLayoutHeaderCell(label: &amp;quot;Col1&amp;quot;),
      a!gridLayoutHeaderCell(label: &amp;quot;Col2&amp;quot;),
      a!gridLayoutHeaderCell(label: &amp;quot;Col3&amp;quot;),
      a!gridLayoutHeaderCell(label: &amp;quot;Col4&amp;quot;),
      a!gridLayoutHeaderCell(label: &amp;quot;Col5&amp;quot;),
      a!gridLayoutHeaderCell(label: &amp;quot;Col6&amp;quot;)
    },
    addRowLink: a!dynamicLink(
      label: &amp;quot;Add&amp;quot;,
      saveInto: a!save(
        local!gridData,
        append(
          local!gridData,
          a!map(
            col1: &amp;quot;&amp;quot;,
            col2: &amp;quot;&amp;quot;,
            col3: &amp;quot;&amp;quot;,
            col4: &amp;quot;&amp;quot;,
            col5: &amp;quot;&amp;quot;,
            col6: &amp;quot;&amp;quot;
          )
        )
      )
    ),
    rows: a!forEach(
      items: local!gridData,
      expression: if(
        fv!index = count(local!gridData),
        a!gridRowLayout(
          contents: {
            a!textField(readOnly: true()),
            a!textField(readOnly: true()),
            a!textField(readOnly: true(), value: &amp;quot;Total&amp;quot;),
            a!textField(
              readOnly: true(),
              value: sum(index(local!gridData, &amp;quot;col4&amp;quot;, {}))
            ),
            a!textField(
              readOnly: true(),
              value: sum(index(local!gridData, &amp;quot;col5&amp;quot;, {}))
            ),
            a!textField(
              readOnly: true(),
              value: sum(index(local!gridData, &amp;quot;col6&amp;quot;, {}))
            )
          }
        ),
        a!gridRowLayout(
          contents: {
            a!textField(
              value: fv!item.col1,
              saveInto: fv!item.col1
            ),
            a!textField(
              value: fv!item.col2,
              saveInto: fv!item.col2
            ),
            a!textField(
              value: fv!item.col3,
              saveInto: fv!item.col3
            ),
            a!textField(
              value: fv!item.col4,
              saveInto: fv!item.col4
            ),
            a!textField(
              value: fv!item.col5,
              saveInto: fv!item.col5
            ),
            a!textField(
              value: fv!item.col6,
              saveInto: fv!item.col6
            )
          }
        )
      )
    )
  )
)&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Interface</title><link>https://community.appian.com/thread/101666?ContentTypeID=1</link><pubDate>Thu, 22 Sep 2022 11:46:30 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:9c966549-60de-45bb-a296-a02017a91f79</guid><dc:creator>Harshit Bumb (Appyzie)</dc:creator><description>&lt;p&gt;You can add an extra gridRowLayout() outside for a!forEach and use the sum() function on the respective column.&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Interface</title><link>https://community.appian.com/thread/101665?ContentTypeID=1</link><pubDate>Thu, 22 Sep 2022 11:44:49 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:d4f4c9b1-855c-4498-96f0-c40bc2832be5</guid><dc:creator>ujjwalr0002</dc:creator><description>&lt;p&gt;Yes it is possible.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>