<?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>RE: Difference of two ratio numbers</title><link>https://community.appian.com/discussions/f/user-interface/33848/re-difference-of-two-ratio-numbers</link><description>Hi , 
 
 I need some calculation logic in appain that gives difference of ration numbers example shown below in the screenshot. 
 Can someone help me to write the logic for this on priority? 
 Here actual and threshold values are user inputs based on</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: RE: Difference of two ratio numbers</title><link>https://community.appian.com/thread/129497?ContentTypeID=1</link><pubDate>Wed, 14 Feb 2024 13:26:50 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:fbf58b2b-a021-4019-b444-65cbb908b460</guid><dc:creator>Konduru Chaitanya</dc:creator><description>&lt;p&gt;You cannot make any kind of highlight in the column level in 22V. Instead you can use a Tag Field to show your value with some color.&amp;nbsp;&lt;br /&gt;&lt;a href="https://docs.appian.com/suite/help/23.4/Tag_Component.html"&gt;Tag Field&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;I guess you should be able to make the change from the example given in the documentation.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: RE: Difference of two ratio numbers</title><link>https://community.appian.com/thread/129495?ContentTypeID=1</link><pubDate>Wed, 14 Feb 2024 13:18:55 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:7ab1dc15-40d9-435f-b81e-4fe767ecd7cb</guid><dc:creator>sid</dc:creator><description>&lt;p&gt;But I dont need icon in my case but that column has to be highlight,&amp;nbsp; Can u modify above code which I have sent.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: RE: Difference of two ratio numbers</title><link>https://community.appian.com/thread/129491?ContentTypeID=1</link><pubDate>Wed, 14 Feb 2024 12:52:05 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:fe9cd9a2-477a-4463-bc28-529500a7e82a</guid><dc:creator>Harshit Bumb (Appyzie)</dc:creator><description>&lt;p&gt;&lt;img style="max-height:240px;max-width:320px;" src="/resized-image/__size/640x480/__key/communityserver-discussions-components-files/13/pastedimage1707915122887v1.png" alt=" " /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: RE: Difference of two ratio numbers</title><link>https://community.appian.com/thread/129490?ContentTypeID=1</link><pubDate>Wed, 14 Feb 2024 12:50:41 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:90c6193f-4a67-425d-b53a-f3974782a4e3</guid><dc:creator>Rayudu Jaipal</dc:creator><description>&lt;p&gt;Hi&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;a!richTextDisplayField(
    labelPosition: &amp;quot;COLLAPSED&amp;quot;,
    value: {
        a!richTextItem(
            text: {
                a!richTextIcon(icon: &amp;quot;USER&amp;quot;, caption: &amp;quot;Name&amp;quot;),
                &amp;quot; Xavier Jones&amp;quot;
            },
            size: &amp;quot;MEDIUM&amp;quot;,
            style: { &amp;quot;STRONG&amp;quot; }
        ),
    char(10),
    char(10),
    a!richTextItem(
        text: {
            a!richTextIcon(icon: &amp;quot;BUILDING-O&amp;quot;, caption: &amp;quot;Location&amp;quot;),
            &amp;quot; Reston, VA&amp;quot;
        },
        color: &amp;quot;SECONDARY&amp;quot;
    )
    }
)&lt;/pre&gt;&lt;br /&gt;You need to try this way within the value field you can give the richtextItem&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: RE: Difference of two ratio numbers</title><link>https://community.appian.com/thread/129489?ContentTypeID=1</link><pubDate>Wed, 14 Feb 2024 11:58:29 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:aa5ab75d-609e-4ba4-8aeb-38e0d74c3f7e</guid><dc:creator>sid</dc:creator><description>&lt;p&gt;I have one&amp;nbsp; query related to the richtextdisplayfield.Could you please suggest?&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt; a!richTextDisplayField(
              value: if(
                fv!item.finCov_txt = &amp;quot;Other&amp;quot;,
                tointeger(fv!item.actualThreshold_txt) - tointeger(fv!item.covenentThreshold_txt),
                if(
                  rule!CR_APP_DSC_displayFinCovPlaceholder(
                    finCovType_txt: displayvalue(
                      fv!item.finCov_txt,
                      ri!crRefFinCov_cdt.finCov_txt,
                      ri!crRefFinCov_cdt.valueType_txt,
                      &amp;quot;&amp;quot;
                    )
                  ) = &amp;quot;m:n&amp;quot;,
                  rule!CR_APP_FinCovCalculationmn(
                    valueType1_txt: fv!item.actualThreshold_txt,
                    valueType2_txt: fv!item.covenentThreshold_txt
                  ),
                  if(
                    rule!CR_APP_DSC_displayFinCovPlaceholder(
                      finCovType_txt: displayvalue(
                        fv!item.finCov_txt,
                        ri!crRefFinCov_cdt.finCov_txt,
                        ri!crRefFinCov_cdt.valueType_txt,
                        &amp;quot;&amp;quot;
                      )
                    ) = &amp;quot;m:1&amp;quot;,
                    rule!CR_APP_FinCovCalculationm1(
                      valueType1_txt: fv!item.actualThreshold_txt,
                      valueType2_txt: fv!item.covenentThreshold_txt
                    ),
                    if(
                      rule!CR_APP_DSC_displayFinCovPlaceholder(
                        finCovType_txt: displayvalue(
                          fv!item.finCov_txt,
                          ri!crRefFinCov_cdt.finCov_txt,
                          ri!crRefFinCov_cdt.valueType_txt,
                          &amp;quot;&amp;quot;
                        )
                      ) = &amp;quot;Amount&amp;quot;,
                      (
                        fv!item.actualThreshold_txt - fv!item.covenentThreshold_txt
                      ) / fv!item.actualThreshold_txt * 100,
                      if(
                        rule!CR_APP_DSC_displayFinCovPlaceholder(
                          finCovType_txt: displayvalue(
                            fv!item.finCov_txt,
                            ri!crRefFinCov_cdt.finCov_txt,
                            ri!crRefFinCov_cdt.valueType_txt,
                            &amp;quot;&amp;quot;
                          )
                        ) = &amp;quot;Percentage&amp;quot;,
                        (
                          (fv!item.actualThreshold_txt / 100) - (fv!item.covenentThreshold_txt / 100)
                        ) / (fv!item.actualThreshold_txt / 100) * 100,
                        null
                      )
                    )
                  )
                )
              ),
              style: if(
                fv!item.varience_txt &amp;gt; 0,
                &amp;quot;color: green;&amp;quot;,
                if(
                  fv!item.varience_txt &amp;lt; 0,
                  &amp;quot;color: red;&amp;quot;,
                  {}
                )
              )
            ),&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;I have used richTextDisplayfield to write some colour logic.Since I would need green colour if the varience returns positive otherwise red .Since in&amp;nbsp;&lt;span&gt;22.4.660.0 version doesn&amp;#39;t have style parameter in richtextdisplayfield, How could I achieve this?&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: RE: Difference of two ratio numbers</title><link>https://community.appian.com/thread/129419?ContentTypeID=1</link><pubDate>Tue, 13 Feb 2024 13:43:21 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:cbd40fe0-a50c-4c98-89be-98137f2bc83a</guid><dc:creator>sid</dc:creator><description>&lt;p&gt;I dont see parameter called background colour in 22.4 version of appian and also this is my code could you suggest for this please if possible.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;img style="max-height:240px;max-width:320px;" src="/resized-image/__size/640x480/__key/communityserver-discussions-components-files/13/pastedimage1707831642928v1.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;Now this image has positive and negativa value for variance column,So variance has to be colured green for positive value and red for negative value.Lets consider variance col is richtextdisplayfield&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: RE: Difference of two ratio numbers</title><link>https://community.appian.com/thread/129417?ContentTypeID=1</link><pubDate>Tue, 13 Feb 2024 12:41:18 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:fdffec08-3114-4eb1-b163-57191a52fab0</guid><dc:creator>sid</dc:creator><description>&lt;p&gt;sure&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: RE: Difference of two ratio numbers</title><link>https://community.appian.com/thread/129140?ContentTypeID=1</link><pubDate>Wed, 07 Feb 2024 16:55:46 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:566bf943-c43e-4dd9-8b0c-b0e705e93ea9</guid><dc:creator>Harshit Bumb (Appyzie)</dc:creator><description>&lt;p&gt;Now that it has worked for you, Can you please accept the answers to close this thread?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: RE: Difference of two ratio numbers</title><link>https://community.appian.com/thread/129136?ContentTypeID=1</link><pubDate>Wed, 07 Feb 2024 16:36:50 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:5c0b651b-9fdc-4b15-98e0-ed213a609631</guid><dc:creator>sid</dc:creator><description>&lt;p&gt;Thank you so much&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: RE: Difference of two ratio numbers</title><link>https://community.appian.com/thread/129135?ContentTypeID=1</link><pubDate>Wed, 07 Feb 2024 16:20:44 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:859bddc3-d2ea-40ee-887c-25439a8e1c77</guid><dc:creator>Harshit Bumb (Appyzie)</dc:creator><description>&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;a!localVariables(
  local!ratio1: &amp;quot;3:4&amp;quot;,
  local!ratio2: &amp;quot;5:6&amp;quot;,
  local!ratio1Array: split(local!ratio1, &amp;quot;:&amp;quot;),
  local!ratio2Array: split(local!ratio2, &amp;quot;:&amp;quot;),
  local!lcm: lcm(
    local!ratio1Array[2],
    local!ratio2Array[2]
  ),
  local!numerator: (
    local!ratio1Array[1] * (local!lcm / local!ratio1Array[2])
  ) - (
    local!ratio2Array[1] * (local!lcm / local!ratio2Array[2])
  ),
  local!result: if(
    mod(local!numerator, local!lcm) = 0,
    local!numerator / local!lcm,
    concat(local!numerator, &amp;quot;/&amp;quot;, local!lcm)
  ),
  local!resultArray: split(local!result,&amp;quot;/&amp;quot;),
  local!lcm2: ((local!ratio1Array[2]*local!resultArray[1])/(local!ratio1Array[1]*a!defaultValue(
    value: index(local!resultArray,2,1),
    default: 1
  ))),
  local!lcm2*100
)&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: RE: Difference of two ratio numbers</title><link>https://community.appian.com/thread/129133?ContentTypeID=1</link><pubDate>Wed, 07 Feb 2024 16:04:55 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:d984858b-a5f3-4c69-8c67-90eba936a267</guid><dc:creator>sid</dc:creator><description>&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;a!localVariables(
  local!ratio1: &amp;quot;3:4&amp;quot;,
  local!ratio2: &amp;quot;5:6&amp;quot;,
  local!ratio1Array: split(local!ratio1, &amp;quot;:&amp;quot;),
  local!ratio2Array: split(local!ratio2, &amp;quot;:&amp;quot;),
  local!lcm: lcm(
    local!ratio1Array[2],
    local!ratio2Array[2]
  ),
  local!numerator: (
    local!ratio1Array[1] * (local!lcm / local!ratio1Array[2])
  ) - (
    local!ratio2Array[1] * (local!lcm / local!ratio2Array[2])
  ),
  if(
    mod(local!numerator, local!lcm) = 0,
    local!numerator / local!lcm,
    concat(local!numerator, &amp;quot;/&amp;quot;, local!lcm)
  )
)&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;Ok this code is giving difference of two numbers which is in ratios ,How to get the result by doing this calculation like the scenario difference of those numbers i.e (-1/12) and divided by local!ratio1 i.e 3:4 and multiply with 100.&lt;/p&gt;
&lt;p&gt;So formula would be like this(local!ratio1(3:4)-local!ratio2(5:6)/local!ratio1(3:4)*100&lt;/p&gt;
&lt;p&gt;I hole this makes more clear&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: RE: Difference of two ratio numbers</title><link>https://community.appian.com/thread/129131?ContentTypeID=1</link><pubDate>Wed, 07 Feb 2024 15:58:12 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:f94df7c0-e7b9-49c8-8a26-737f94bf29e3</guid><dc:creator>Harshit Bumb (Appyzie)</dc:creator><description>&lt;p&gt;I am still not clear. Can you help me with just the inputs you would like to send and the output you want to get? And I will try to build the formula.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: RE: Difference of two ratio numbers</title><link>https://community.appian.com/thread/129129?ContentTypeID=1</link><pubDate>Wed, 07 Feb 2024 15:56:36 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:8b1ea7dc-5ce6-49e2-adaf-9654b2bdbad3</guid><dc:creator>sid</dc:creator><description>&lt;p&gt;so before the formula was like this ex: (2:3-4:5) result based on above code worked,Now How to achieve result using this formula&lt;/p&gt;
&lt;p&gt;case1 :(2:3-4:5)/2:3*100&lt;/p&gt;
&lt;p&gt;case2: (2:1-4:1)2:1*100 for above of the code?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: RE: Difference of two ratio numbers</title><link>https://community.appian.com/thread/129128?ContentTypeID=1</link><pubDate>Wed, 07 Feb 2024 15:52:53 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:48d561b6-aa80-4220-a8ed-632ce78f64d9</guid><dc:creator>Harshit Bumb (Appyzie)</dc:creator><description>&lt;p&gt;I did not get your question. What do you want to achieve here?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: RE: Difference of two ratio numbers</title><link>https://community.appian.com/thread/129127?ContentTypeID=1</link><pubDate>Wed, 07 Feb 2024 15:49:29 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:97610f78-d8a5-40ff-b651-3bb05cc778b4</guid><dc:creator>sid</dc:creator><description>&lt;p&gt;could u please suggest on this?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: RE: Difference of two ratio numbers</title><link>https://community.appian.com/thread/129086?ContentTypeID=1</link><pubDate>Wed, 07 Feb 2024 11:26:12 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:2dee88b5-4799-4583-9982-c1ae47529eb5</guid><dc:creator>sid</dc:creator><description>&lt;p&gt;now according to this formula-&amp;gt; (local!ratio1-local!ratio2)/local!ratio1*100 how would be in the change in tha code?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: RE: Difference of two ratio numbers</title><link>https://community.appian.com/thread/129085?ContentTypeID=1</link><pubDate>Wed, 07 Feb 2024 11:24:34 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:cf26f0d2-22ef-4bef-a1ef-36c1a6abb2ae</guid><dc:creator>sid</dc:creator><description>&lt;p&gt;Hi now for the same values according to this formula- &amp;gt;(local!ratio1-local!ratio2)/local!ratio1*100 how to get the answer 11.11?Could you suggest for the same code?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: RE: Difference of two ratio numbers</title><link>https://community.appian.com/thread/129004?ContentTypeID=1</link><pubDate>Tue, 06 Feb 2024 14:56:00 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:d06e6d55-bc06-4eb6-963a-f5ee47e5a29f</guid><dc:creator>Harshit Bumb (Appyzie)</dc:creator><description>&lt;p&gt;You can search for it on ChatGPT and build a formula&amp;nbsp;around it.&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: RE: Difference of two ratio numbers</title><link>https://community.appian.com/thread/129003?ContentTypeID=1</link><pubDate>Tue, 06 Feb 2024 14:54:25 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:dec38b84-2dbb-49a5-9e8d-f1ddb4c12426</guid><dc:creator>sid</dc:creator><description>&lt;p&gt;Hi, How to calculate difference if it is in % values ?&lt;img style="max-height:240px;max-width:320px;" src="/resized-image/__size/640x480/__key/communityserver-discussions-components-files/13/pastedimage1707231251237v1.png" alt=" " /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: RE: Difference of two ratio numbers</title><link>https://community.appian.com/thread/128530?ContentTypeID=1</link><pubDate>Wed, 31 Jan 2024 05:57:24 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:68128887-65cc-4b18-922d-3cbb96454bd9</guid><dc:creator>Harshit Bumb (Appyzie)</dc:creator><description>&lt;p&gt;You can add richTextDisplayFields in your gridRowLayout and then add color to it using the same logic.&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: RE: Difference of two ratio numbers</title><link>https://community.appian.com/thread/128503?ContentTypeID=1</link><pubDate>Tue, 30 Jan 2024 12:36:17 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:c050e87c-60e1-46c7-bb2e-96852b4a1a31</guid><dc:creator>sid</dc:creator><description>&lt;p&gt;but i have gridRowlayout with add multiple rows and I dont see backgroundcolour in 22.4 version of appian which i am using now,Could you please suggest for this code and it would be more useful.&lt;pre class="ui-code" data-mode="text"&gt;{
  a!gridLayout(
    label: cons!CR_APP_LAB_FINANCIAL_COVENANTS,
    labelPosition: &amp;quot;COLLAPSED&amp;quot;,
    spacing: &amp;quot;DENSE&amp;quot;,
    headerCells: {
      a!forEach(
        items: {
          &amp;quot;&amp;quot;,
          cons!CR_APP_TXT_FINANCIAL_COVENANTS_GRID_FIELDS,
          &amp;quot;&amp;quot;
        },
        expression: if(
          fv!item = cons!CR_APP_TXT_FINANCIAL_COVENANTS_GRID_FIELDS[9],
          a!gridLayoutHeaderCell(
            align: &amp;quot;LEFT&amp;quot;,
            label: fv!item,
            helpTooltip: cons!CR_APP_SC_PRECEDENT_SUBSEQUENT_LAB_VAL[1] &amp;amp; &amp;quot; / &amp;quot; &amp;amp; cons!CR_APP_SC_PRECEDENT_SUBSEQUENT_LAB_VAL[2]
          ),
          a!gridLayoutHeaderCell(
            align: if(
              contains(
                {
                  cons!CR_APP_TXT_FINANCIAL_COVENANTS_GRID_FIELDS[1],
                  cons!CR_APP_TXT_FINANCIAL_COVENANTS_GRID_FIELDS[3],
                  cons!CR_APP_TXT_FINANCIAL_COVENANTS_GRID_FIELDS[4],
                  cons!CR_APP_TXT_FINANCIAL_COVENANTS_GRID_FIELDS[5],
                  cons!CR_APP_TXT_FINANCIAL_COVENANTS_GRID_FIELDS[6],
                  cons!CR_APP_TXT_FINANCIAL_COVENANTS_GRID_FIELDS[7]
                },
                fv!item
              ),
              &amp;quot;RIGHT&amp;quot;,
              &amp;quot;LEFT&amp;quot;
            ),
            helpTooltip: if(
              fv!item = cons!CR_APP_TXT_FINANCIAL_COVENANTS_GRID_FIELDS[16],
              &amp;quot;Compliant Marked by Credit&amp;quot;,
              null
            ),
            label: fv!item
          )
        )
      )
    },
    columnConfigs: {
      a!gridLayoutColumnConfig(width: &amp;quot;ICON&amp;quot;),
      a!gridLayoutColumnConfig(width: &amp;quot;NARROW&amp;quot;),
      a!gridLayoutColumnConfig(width: &amp;quot;DISTRIBUTE&amp;quot;, weight: &amp;quot;&amp;quot;),
      a!gridLayoutColumnConfig(width: &amp;quot;DISTRIBUTE&amp;quot;, weight: &amp;quot;&amp;quot;),
      a!gridLayoutColumnConfig(width: &amp;quot;DISTRIBUTE&amp;quot;, weight: &amp;quot;&amp;quot;),
      a!gridLayoutColumnConfig(width: &amp;quot;DISTRIBUTE&amp;quot;, weight: &amp;quot;&amp;quot;),
      a!gridLayoutColumnConfig(width: &amp;quot;DISTRIBUTE&amp;quot;, weight: &amp;quot;&amp;quot;),
      a!gridLayoutColumnConfig(width: &amp;quot;DISTRIBUTE&amp;quot;, weight: &amp;quot;&amp;quot;),
      a!gridLayoutColumnConfig(width: &amp;quot;DISTRIBUTE&amp;quot;, weight: 1),
      a!gridLayoutColumnConfig(width: &amp;quot;DISTRIBUTE&amp;quot;, weight: &amp;quot;&amp;quot;),
      a!gridLayoutColumnConfig(width: &amp;quot;DISTRIBUTE&amp;quot;, weight: &amp;quot;&amp;quot;),
      a!gridLayoutColumnConfig(width: &amp;quot;DISTRIBUTE&amp;quot;, weight: &amp;quot;&amp;quot;),
      a!gridLayoutColumnConfig(width: &amp;quot;DISTRIBUTE&amp;quot;, weight: &amp;quot;&amp;quot;),
      a!gridLayoutColumnConfig(width: &amp;quot;DISTRIBUTE&amp;quot;, weight: &amp;quot;&amp;quot;),
      a!gridLayoutColumnConfig(width: &amp;quot;NARROW&amp;quot;),
      a!gridLayoutColumnConfig(width: &amp;quot;DISTRIBUTE&amp;quot;, weight: &amp;quot;&amp;quot;),
      a!gridLayoutColumnConfig(width: &amp;quot;NARROW&amp;quot;),
      a!gridLayoutColumnConfig(width: &amp;quot;ICON&amp;quot;)
    },
    rows: {
      a!forEach(
        items: ri!crAppFinCov_cdt,
        expression: a!gridRowLayout(
          id: fv!item.id_int,
          contents: {
            rule!CR_APP_RT_displayLegacyStatusIcon(
              rowItem_cdt: fv!item,
              showWhen_bool: false()
            ),
            a!integerField(
              value: fv!index,
              readOnly: true,
              align: &amp;quot;RIGHT&amp;quot;
            ),
            a!dropdownField_20r2(
              required: true,
              choiceLabels: rule!APN_distinct(
                touniformstring(
                  index(ri!crRefFinCov_cdt, &amp;quot;finCov_txt&amp;quot;, {})
                )
              ),
              choiceValues: rule!APN_distinct(
                touniformstring(index(ri!crRefFinCov_cdt, &amp;quot;id_int&amp;quot;, {}))
              ),
              value: tostring(index(fv!item, &amp;quot;refFinCovRefId_int&amp;quot;, {})),
              saveInto: {
                fv!item.refFinCovRefId_int,
                a!save(
                  fv!item.finCov_txt,
                  displayvalue(
                    tostring(fv!item.refFinCovRefId_int),
                    touniformstring(index(ri!crRefFinCov_cdt, &amp;quot;id_int&amp;quot;, {})),
                    index(ri!crRefFinCov_cdt, &amp;quot;finCov_txt&amp;quot;, {}),
                    {}
                  )
                )
              },
              placeholderLabel: cons!CR_APP_TXT_PLACEHOLDER_VALUE,
              disabled: if(
                fv!item.isPartiallyLocked_int &amp;lt;&amp;gt; 0,
                true,
                false
              ),
              validationGroup: if(
                ri!isEditable_bool,
                cons!CR_APP_TXT_EDIT_FIN_COV,
                cons!APN_TXT_VALIDATE_AND_SUBMIT
              ),
              
            ),
            a!textField(
              value: index(fv!item, &amp;quot;existingThreshold_txt&amp;quot;, {}),
              saveInto: {
                fv!item.existingThreshold_txt,
                a!save(
                  fv!item.existingThreshold_txt,
                  rule!CR_APP_SC_formatThresholdValue(
                    displayvalue(
                      fv!item.finCov_txt,
                      ri!crRefFinCov_cdt.finCov_txt,
                      ri!crRefFinCov_cdt.valueType_txt,
                      &amp;quot;&amp;quot;
                    ),
                    fv!item.existingThreshold_txt
                  )
                )
              },
              required: ri!isFinCovReq_bool,
              validationGroup: if(
                ri!isEditable_bool,
                cons!CR_APP_TXT_EDIT_FIN_COV,
                cons!APN_TXT_VALIDATE_AND_SUBMIT
              ),
              disabled: rule!CR_APP_FN_freezeRecords(
                crAppSelectedItem_cdt: fv!item,
                isDisplayed_bool: ri!isEditable_bool
              ),
              align: &amp;quot;RIGHT&amp;quot;,
              validations: rule!CR_APP_SC_getCovenantsValidations(
                valueType_txt: displayvalue(
                  fv!item.finCov_txt,
                  ri!crRefFinCov_cdt.finCov_txt,
                  ri!crRefFinCov_cdt.valueType_txt,
                  &amp;quot;&amp;quot;
                ),
                inputValue_txt: fv!item.existingThreshold_txt
              ),
              placeholder: rule!CR_APP_DSC_displayFinCovPlaceholder(
                finCovType_txt: displayvalue(
                  fv!item.finCov_txt,
                  ri!crRefFinCov_cdt.finCov_txt,
                  ri!crRefFinCov_cdt.valueType_txt,
                  &amp;quot;&amp;quot;
                )
              )
            ),
            a!textField(
              value: index(fv!item, &amp;quot;proposedThreshold_txt&amp;quot;, {}),
              saveInto: {
                fv!item.proposedThreshold_txt,
                a!save(
                  fv!item.proposedThreshold_txt,
                  rule!CR_APP_SC_formatThresholdValue(
                    displayvalue(
                      fv!item.finCov_txt,
                      ri!crRefFinCov_cdt.finCov_txt,
                      ri!crRefFinCov_cdt.valueType_txt,
                      &amp;quot;&amp;quot;
                    ),
                    fv!item.proposedThreshold_txt
                  )
                )
              },
              required: ri!isFinCovReq_bool,
              validationGroup: if(
                ri!isEditable_bool,
                cons!CR_APP_TXT_EDIT_FIN_COV,
                cons!APN_TXT_VALIDATE_AND_SUBMIT
              ),
              disabled: rule!CR_APP_FN_freezeRecords(
                crAppSelectedItem_cdt: fv!item,
                isDisplayed_bool: ri!isEditable_bool
              ),
              align: &amp;quot;RIGHT&amp;quot;,
              validations: rule!CR_APP_SC_getCovenantsValidations(
                valueType_txt: displayvalue(
                  fv!item.finCov_txt,
                  ri!crRefFinCov_cdt.finCov_txt,
                  ri!crRefFinCov_cdt.valueType_txt,
                  &amp;quot;&amp;quot;
                ),
                inputValue_txt: fv!item.proposedThreshold_txt
              ),
              placeholder: rule!CR_APP_DSC_displayFinCovPlaceholder(
                finCovType_txt: displayvalue(
                  fv!item.finCov_txt,
                  ri!crRefFinCov_cdt.finCov_txt,
                  ri!crRefFinCov_cdt.valueType_txt,
                  &amp;quot;&amp;quot;
                )
              )
            ),
            if(
              fv!item.finCov_txt = &amp;quot;Other&amp;quot;,
              a!integerField(
                value: index(fv!item, &amp;quot;actualThreshold_txt&amp;quot;, {}),
                saveInto: fv!item.actualThreshold_txt,
                disabled: rule!CR_APP_FN_freezeRecords(
                  crAppSelectedItem_cdt: fv!item,
                  isDisplayed_bool: ri!isEditable_bool
                )
              ),
              a!textField(
                value: index(fv!item, &amp;quot;actualThreshold_txt&amp;quot;, {}),
                saveInto: {
                  fv!item.actualThreshold_txt,
                  a!save(
                    fv!item.actualThreshold_txt,
                    rule!CR_APP_SC_formatThresholdValue(
                      displayvalue(
                        fv!item.finCov_txt,
                        ri!crRefFinCov_cdt.finCov_txt,
                        ri!crRefFinCov_cdt.valueType_txt,
                        &amp;quot;&amp;quot;
                      ),
                      fv!item.actualThreshold_txt
                    )
                  )
                },
                validationGroup: if(
                  ri!isEditable_bool,
                  cons!CR_APP_TXT_EDIT_FIN_COV,
                  cons!APN_TXT_VALIDATE_AND_SUBMIT
                ),
                required: ri!isFinCovReq_bool,
                disabled: rule!CR_APP_FN_freezeRecords(
                  crAppSelectedItem_cdt: fv!item,
                  isDisplayed_bool: ri!isEditable_bool
                ),
                align: &amp;quot;RIGHT&amp;quot;,
                validations: rule!CR_APP_SC_getCovenantsValidations(
                  valueType_txt: displayvalue(
                    fv!item.finCov_txt,
                    ri!crRefFinCov_cdt.finCov_txt,
                    ri!crRefFinCov_cdt.valueType_txt,
                    &amp;quot;&amp;quot;
                  ),
                  inputValue_txt: fv!item.actualThreshold_txt
                ),
                placeholder: rule!CR_APP_DSC_displayFinCovPlaceholder(
                  finCovType_txt: displayvalue(
                    fv!item.finCov_txt,
                    ri!crRefFinCov_cdt.finCov_txt,
                    ri!crRefFinCov_cdt.valueType_txt,
                    &amp;quot;&amp;quot;
                  )
                )
              )
            ),
            if(
              fv!item.finCov_txt = &amp;quot;Other&amp;quot;,
              a!integerField(
                value: index(fv!item, &amp;quot;covenentThreshold_txt&amp;quot;, {}),
                saveInto: fv!item.covenentThreshold_txt,
                readOnly: rule!CR_APP_FN_freezeRecords(
                  crAppSelectedItem_cdt: fv!item,
                  isDisplayed_bool: ri!isEditable_bool
                )
              ),
              a!textField(
                value: index(fv!item, &amp;quot;covenentThreshold_txt&amp;quot;, {}),
                saveInto: fv!item.covenentThreshold_txt,
                readOnly: rule!CR_APP_FN_freezeRecords(
                  crAppSelectedItem_cdt: fv!item,
                  isDisplayed_bool: ri!isEditable_bool
                )
              )
            ),
            a!textField(
              value: if(
                fv!item.finCov_txt = &amp;quot;Other&amp;quot;,
                {
                  tointeger(fv!item.actualThreshold_txt) - tointeger(fv!item.covenentThreshold_txt)
                },
                {}
              ),
              saveInto: fv!item.varience_txt,
              disabled: rule!CR_APP_FN_freezeRecords(
                crAppSelectedItem_cdt: fv!item,
                isDisplayed_bool: ri!isEditable_bool
              )
            ),
            a!dateField(
              value: index(fv!item, &amp;quot;financialDate_dt&amp;quot;, {}),
              saveInto: fv!item.financialDate_dt,
              required: ri!isFinCovReq_bool,
              validationGroup: if(
                ri!isEditable_bool,
                cons!CR_APP_TXT_EDIT_FIN_COV,
                cons!APN_TXT_VALIDATE_AND_SUBMIT
              ),
              readOnly: rule!CR_APP_FN_freezeRecords(
                crAppSelectedItem_cdt: fv!item,
                isDisplayed_bool: ri!isEditable_bool
              ),
              align: &amp;quot;LEFT&amp;quot;
            ),
            a!dropdownField_20r2(
              choiceLabels: cons!CR_APP_SC_PRECEDENT_SUBSEQUENT_LAB_VAL,
              choiceValues: cons!CR_APP_SC_PRECEDENT_SUBSEQUENT_LAB_VAL,
              value: index(fv!item, &amp;quot;conditionFlag_txt&amp;quot;, {}),
              saveInto: fv!item.conditionFlag_txt,
              placeholderLabel: cons!CR_APP_TXT_PLACEHOLDER_VALUE,
              disabled: rule!CR_APP_FN_freezeRecords(
                crAppSelectedItem_cdt: fv!item,
                isDisplayed_bool: ri!isEditable_bool
              )
            ),
            a!dropdownField_20r2(
              choiceLabels: cons!CR_APP_SC_BESTEFFORTS_COMPULSORY_LAB_VAL,
              choiceValues: cons!CR_APP_SC_BESTEFFORTS_COMPULSORY_LAB_VAL,
              value: index(fv!item, &amp;quot;requirementFlag_txt&amp;quot;, {}),
              saveInto: fv!item.requirementFlag_txt,
              placeholderLabel: cons!CR_APP_TXT_PLACEHOLDER_VALUE,
              disabled: rule!CR_APP_FN_freezeRecords(
                crAppSelectedItem_cdt: fv!item,
                isDisplayed_bool: ri!isEditable_bool
              )
            ),
            a!checkboxField(
              value: fv!item.folConventionalFlag_int,
              saveInto: fv!item.folConventionalFlag_int,
              choiceLabels: cons!CR_APP_TXT_PROJECT_TYPES_VALUE[1],
              choiceValues: cons!CR_APP_INT_CHOICE_VALUES[1],
              choiceLayout: &amp;quot;COMPACT&amp;quot;,
              disabled: rule!CR_APP_FN_freezeRecords(
                crAppSelectedItem_cdt: fv!item,
                isDisplayed_bool: ri!isEditable_bool
              ),
              required: ri!isFinCovReq_bool,
              validationGroup: if(
                ri!isEditable_bool,
                cons!CR_APP_TXT_EDIT_FIN_COV,
                cons!APN_TXT_VALIDATE_AND_SUBMIT
              ),
              align: &amp;quot;LEFT&amp;quot;
            ),
            a!checkboxField(
              value: fv!item.folIslamicFlag_int,
              saveInto: fv!item.folIslamicFlag_int,
              choiceLabels: cons!CR_APP_TXT_PROJECT_TYPES_VALUE[2],
              choiceValues: cons!CR_APP_INT_CHOICE_VALUES[1],
              choiceLayout: &amp;quot;COMPACT&amp;quot;,
              disabled: rule!CR_APP_FN_freezeRecords(
                crAppSelectedItem_cdt: fv!item,
                isDisplayed_bool: ri!isEditable_bool
              ),
              required: ri!isFinCovReq_bool,
              validationGroup: if(
                ri!isEditable_bool,
                cons!CR_APP_TXT_EDIT_FIN_COV,
                cons!APN_TXT_VALIDATE_AND_SUBMIT
              ),
              align: &amp;quot;LEFT&amp;quot;
            ),
            a!textField(
              value: index(fv!item, &amp;quot;status_txt&amp;quot;, {}),
              saveInto: fv!item.status_txt,
              readOnly: true,
              align: &amp;quot;LEFT&amp;quot;
            ),
            a!dateField(
              readOnly: rule!CR_APP_FN_freezeRecords(
                crAppSelectedItem_cdt: fv!item,
                isDisplayed_bool: ri!isEditable_bool
              ),
              value: index(fv!item, &amp;quot;deferralDate_dt&amp;quot;, {}),
              saveInto: fv!item.deferralDate_dt
            ),
            a!textField(
              value: rule!APN_FN_getDisplayName(userId: index(fv!item, &amp;quot;owner_txt&amp;quot;, {})),
              saveInto: fv!item.owner_txt,
              readOnly: true,
              align: &amp;quot;LEFT&amp;quot;
            ),
            a!radioButtonField(
              choiceLayout: &amp;quot;COMPACT&amp;quot;,
              value: index(fv!item, &amp;quot;compliantFlag_txt&amp;quot;, {}),
              saveInto: fv!item.compliantFlag_txt,
              choiceLabels: cons!CR_APP_TXT_CHOICE_LABELS_COMPLAINT_BREACH,
              choiceValues: cons!CR_APP_TXT_CHOICE_LABELS_COMPLAINT_BREACH,
              required: rule!CR_APP_FN_requiredConditionsForCompliantFlag(
                isRequired_bool: ri!isFinCovReq_bool,
                role_txt: rule!CR_APP_FN_getUserRole(inputUser_txt: loggedInUser())
              ),
              validationGroup: if(
                ri!isEditable_bool,
                cons!CR_APP_TXT_EDIT_FIN_COV,
                cons!APN_TXT_VALIDATE_AND_SUBMIT
              ),
              disabled: rule!CR_APP_FN_conditionsToEnableCompliantFlag(
                sourceName_txt: cons!CR_APP_TXT_CHILD_SOURCE_TYPES[4],
                crAppSelectedItem_cdt: fv!item,
                isEditable_bool: ri!isEditable_bool,
                role_txt: rule!CR_APP_FN_getUserRole(inputUser_txt: loggedInUser())
              ),
              
            ),
            a!richTextDisplayField(
              value: a!richTextIcon(
                showWhen: if(
                  rule!APN_isBlank(ri!isEditable_bool),
                  false,
                  ri!isEditable_bool
                ),
                icon: &amp;quot;close&amp;quot;,
                altText: &amp;quot;delete &amp;quot; &amp;amp; fv!index,
                caption: if(
                  or(
                    fv!item.isPartiallyLocked_int = 1,
                    fv!item.isPartiallyLocked_int = 0
                  ),
                  &amp;quot;Remove&amp;quot;,
                  &amp;quot;&amp;quot;
                ),
                link: a!dynamicLink(
                  showWhen: if(
                    rule!CR_APP_FN_freezeRecords(
                      crAppSelectedItem_cdt: fv!item,
                      isDisplayed_bool: ri!isEditable_bool
                    ),
                    false(),
                    or(
                      fv!item.isPartiallyLocked_int = 1,
                      fv!item.isPartiallyLocked_int = 0
                    )
                  ),
                  value: fv!index,
                  saveInto: {
                    if(
                      rule!APN_isBlank(fv!item.id_int),
                      {},
                      {
                        a!save(
                          ri!crAppFinCovDeleted_cdt,
                          append(ri!crAppFinCovDeleted_cdt, fv!item)
                        )
                      }
                    ),
                    a!save(
                      ri!crAppFinCov_cdt,
                      remove(ri!crAppFinCov_cdt, fv!index)
                    )
                  }
                ),
                linkStyle: &amp;quot;STANDALONE&amp;quot;,
                color: if(
                  or(
                    fv!item.isPartiallyLocked_int = 1,
                    fv!item.isPartiallyLocked_int = 0
                  ),
                  &amp;quot;NEGATIVE&amp;quot;,
                  &amp;quot;SECONDARY&amp;quot;
                )
              )
            )
          }
        )
      )
    },
    addRowLink: a!dynamicLink(
      showWhen: if(
        rule!APN_isBlank(ri!isEditable_bool),
        false,
        ri!isEditable_bool
      ),
      label: cons!CR_APP_TXT_ADD_FINANCIAL_COVENANTS,
      value: {
        addedOn_dt: now(),
        addedBy_txt: loggedInUser(),
        addedByRole_txt: rule!CR_FN_getUserRole(inputUser_txt: loggedInUser()),
        requestId_int: cons!CR_APP_DEFAULT_REQUEST_ID,
        cif_int: ri!cif_int,
        rowStatus_txt: cons!CR_APP_TXT_AUDIT_STATUS[1],
        folIslamicFlag_int: 1,
        folConventionalFlag_int: 1,
        isLocked_int: 0,
        isPartiallyLocked_int: 0,
        legacyStatus_txt: cons!CR_APP_TXT_AUDIT_STATUS[1],
        detailsFlag_int: 0,
        compliantFlag_txt: cons!CR_APP_TXT_CHOICE_LABELS_COMPLAINT_BREACH[2],
        conditionFlag_txt: cons!CR_APP_SC_PRECEDENT_SUBSEQUENT_LAB_VAL[1],
        requirementFlag_txt: cons!CR_APP_SC_BESTEFFORTS_COMPULSORY_LAB_VAL[2]
      },
      saveInto: a!save(
        ri!crAppFinCov_cdt,
        append(ri!crAppFinCov_cdt, save!value)
      )
    ),
    selectable: ri!isSelectable_bool,
    selectionStyle: &amp;quot;ROW_HIGHLIGHT&amp;quot;,
    selectionValue: ri!selectedId_int,
    selectionSaveInto: {
      a!save(ri!childButtonAction_txt, null),
      /*Variable to set details section readonly , applicable for individual sections */
      a!save(ri!isDetailsReadOnly_bool, true),
      a!save(
        ri!selectedId_int,
        index(reverse(save!value), 1, {})
      ),
      a!save(
        ri!crAppFinCovSelected_cdt,
        index(
          ri!crAppFinCov_cdt,
          wherecontains(
            ri!selectedId_int,
            ri!crAppFinCov_cdt.id_int
          ),
          {}
        )
      ),
      a!save(
        ri!crRefFinCovDetails_cdt,
        rule!CR_APP_QE_getRefFinCovDetailsByFilters(
          refFinCovRefId_int: index(
            ri!crAppFinCov_cdt,
            &amp;quot;refFinCovRefId_int&amp;quot;,
            {}
          )
        )
      ),
      a!save(ri!crRefFinCovDetailsSelected_cdt, {}),
      a!save(ri!crAppFinCovDetailsSelected_cdt, {}),
      a!save(
        ri!crRefFinCovDetailsSelected_cdt,
        index(
          ri!crRefFinCovDetails_cdt,
          wherecontains(
            touniformstring(
              ri!crAppFinCovSelected_cdt.refFinCovRefId_int
            ),
            touniformstring(
              ri!crRefFinCovDetails_cdt.refFinCovRefId_int
            )
          ),
          {}
        )
      ),
      a!save(
        ri!crAppFinCovDetailsSelected_cdt,
        index(
          ri!crAppFinCovDetails_cdt,
          wherecontains(
            touniformstring(ri!crAppFinCovSelected_cdt.id_int),
            touniformstring(
              ri!crAppFinCovDetails_cdt.appFinCovRowId_int
            )
          ),
          repeat(
            count(ri!crRefFinCovDetailsSelected_cdt),
            &amp;#39;type!{urn:com:appian:types:NBF}CR_APP_FinCovDetails&amp;#39;()
          )
        )
      )
    },
    selectionDisabled: or(
      ri!isEditable_bool,
      ri!buttonAction_txt = cons!CR_APP_TXT_EDIT_FIN_COV_DETAILS
    ),
    validations: {},
    shadeAlternateRows: true
  )
}&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: RE: Difference of two ratio numbers</title><link>https://community.appian.com/thread/128502?ContentTypeID=1</link><pubDate>Tue, 30 Jan 2024 11:51:50 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:a884ea70-ddf5-4488-9226-a3fda2f9b58a</guid><dc:creator>Harshit Bumb (Appyzie)</dc:creator><description>&lt;p&gt;Something like this.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;a!gridField(
  data: {
    {
      actual: 6,
      convenant: 3,
      variance: 3
    },
    {
      actual: 12,
      convenant: 6,
      variance: 6
    }
  },
  columns: {
    a!gridColumn(
      label: &amp;quot;Actual&amp;quot;,
      value: fv!row.actual,
      backgroundColor: a!match(
        value:fv!row.variance,
        whenTrue: (fv!row.actual*0.5)&amp;lt;(fv!value*0.5),
        then: &amp;quot;WARN&amp;quot;,
        whenTrue: fv!value&amp;lt;=0,
        then: &amp;quot;ERROR&amp;quot;,
        whenTrue: fv!value&amp;gt;0,
        then: &amp;quot;SUCCESS&amp;quot;,
        default: &amp;quot;NONE&amp;quot;
      )
    ),
    a!gridColumn(
      label: &amp;quot;convenant&amp;quot;,
      value: fv!row.convenant,
      backgroundColor: a!match(
        value:fv!row.variance,
        whenTrue: (fv!row.actual*0.5)&amp;lt;(fv!value*0.5),
        then: &amp;quot;WARN&amp;quot;,
        whenTrue: fv!value&amp;lt;=0,
        then: &amp;quot;ERROR&amp;quot;,
        whenTrue: fv!value&amp;gt;0,
        then: &amp;quot;SUCCESS&amp;quot;,
        default: &amp;quot;NONE&amp;quot;
      )
    ),
    a!gridColumn(
      label: &amp;quot;variance&amp;quot;,
      value: fv!row.variance,
      backgroundColor: a!match(
        value:fv!row.variance,
        whenTrue: (fv!row.actual*0.5)&amp;lt;(fv!value*0.5),
        then: &amp;quot;WARN&amp;quot;,
        whenTrue: fv!value&amp;lt;=0,
        then: &amp;quot;ERROR&amp;quot;,
        whenTrue: fv!value&amp;gt;0,
        then: &amp;quot;SUCCESS&amp;quot;,
        default: &amp;quot;NONE&amp;quot;
      )
    )
  }
  
)&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: RE: Difference of two ratio numbers</title><link>https://community.appian.com/thread/128497?ContentTypeID=1</link><pubDate>Tue, 30 Jan 2024 11:45:53 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:ab7a64e4-93bd-4379-9c4b-4420ef53a5ad</guid><dc:creator>Harshit Bumb (Appyzie)</dc:creator><description>&lt;p&gt;You can use the &amp;#39;&lt;span&gt;backgroundColor&amp;#39; in gridColumn to change the background color.&amp;nbsp;&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: RE: Difference of two ratio numbers</title><link>https://community.appian.com/thread/128495?ContentTypeID=1</link><pubDate>Tue, 30 Jan 2024 11:42:41 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:203bbbd5-3a3f-4a3b-8cb7-c4b61744c704</guid><dc:creator>sid</dc:creator><description>&lt;p&gt;&lt;img style="max-height:240px;max-width:320px;" src="/resized-image/__size/640x480/__key/communityserver-discussions-components-files/13/pastedimage1706614836735v1.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;is it possible to show entire grid row of data with these cases? if not is it possible to show for variance field(it a textfield)?&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: RE: Difference of two ratio numbers</title><link>https://community.appian.com/thread/128493?ContentTypeID=1</link><pubDate>Tue, 30 Jan 2024 11:40:11 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:8b4aa933-fcd1-43d4-8a6b-09548f0f7c58</guid><dc:creator>Harshit Bumb (Appyzie)</dc:creator><description>&lt;p&gt;possible to?&lt;/p&gt;
[quote userid="75078" url="~/discussions/f/user-interface/33848/re-difference-of-two-ratio-numbers/128490"]rid. is it possible to[/quote]&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>