<?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>Grid Column Bug</title><link>https://community.appian.com/discussions/f/user-interface/18973/grid-column-bug</link><description>Hello I am having a problem with displaying an interface specifically for orders in a grid. The lines specifically in question are 120, 168, and 170 those are where the errors begin. I am wondering how to fix and where it went wrong so in the future we</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: Grid Column Bug</title><link>https://community.appian.com/thread/74506?ContentTypeID=1</link><pubDate>Tue, 02 Jun 2020 20:42:31 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:24263bde-ded1-4505-ae48-cfa1bf51fce6</guid><dc:creator>Danny Verb</dc:creator><description>&lt;p&gt;&lt;pre class="ui-code" data-mode="java"&gt;if(
    isnull(fv!row.status),
    a!richTextIcon()/*some default icon*/,
    choose(
          fv!row.status+1,
          a!richTextIcon(
            icon: &amp;quot;check-circle&amp;quot;,
            caption:&amp;quot;On Schedule&amp;quot;,
            color: &amp;quot;POSITIVE&amp;quot;,
            size: &amp;quot;MEDIUM_PLUS&amp;quot;
          ),
          a!richTextIcon(
            icon: &amp;quot;exclamation-circle&amp;quot;,
            caption:&amp;quot;Due Soon&amp;quot;,
            color: &amp;quot;#ffcd4e&amp;quot;,
            size: &amp;quot;MEDIUM_PLUS&amp;quot;
          ),
          a!richTextIcon(
            icon: &amp;quot;times-circle&amp;quot;,
            caption:&amp;quot;Overdue&amp;quot;,
            color: &amp;quot;NEGATIVE&amp;quot;,
            size: &amp;quot;MEDIUM_PLUS&amp;quot;
          )
        )
    )
)&lt;/pre&gt;4&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Grid Column Bug</title><link>https://community.appian.com/thread/74505?ContentTypeID=1</link><pubDate>Tue, 02 Jun 2020 20:38:42 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:9e395c5d-999e-4db7-b9e2-9c0b3f788f99</guid><dc:creator>KGraber1078</dc:creator><description>&lt;p&gt;How would this statement look, I am not very familiar with expression mode unfortunately. I am sorry for being a burden but this is a huge blocker for our team currently.&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Grid Column Bug</title><link>https://community.appian.com/thread/74504?ContentTypeID=1</link><pubDate>Tue, 02 Jun 2020 20:33:12 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:b4a30739-5549-45d6-9393-a7f1657f88ee</guid><dc:creator>Danny Verb</dc:creator><description>&lt;p&gt;The error says &amp;quot;Choose index cannot be null&amp;quot; which means the first parameter in choose() can&amp;#39;t be null. Your first parameter is &amp;#39;fv!row.status+1&amp;#39;. If fv!row.status does not translate to a number, this could cause an issue. I recommend using a small if() statement to first see if fv!row.status is null using the isnull() function.&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>