<?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 filter negative values from readonly grid</title><link>https://community.appian.com/discussions/f/general/37792/how-to-filter-negative-values-from-readonly-grid</link><description>I have a requirement to filter negative values from readonly grid and It needs to get configured from expression rule but Im not able to filter the negative values. 
 I tried using &amp;quot;&amp;lt;&amp;quot; as operator for that particular field but still not filtering out</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: How to filter negative values from readonly grid</title><link>https://community.appian.com/thread/142192?ContentTypeID=1</link><pubDate>Sun, 27 Oct 2024 20:42:29 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:d2d8937f-cb2b-4ea6-97fa-305c25a7f9b7</guid><dc:creator>appian.user</dc:creator><description>&lt;p&gt;Thankyou so much Mike for your time and valuable information and&lt;/p&gt;
&lt;p&gt;my issue is also resolved as the requirement wasn&amp;#39;t decided and after all the conversation requirement came to the point that my previous solution was correct only they wanted&amp;nbsp; as if user enter any non decimal value&amp;nbsp;&lt;br /&gt;example 41 and 42 then on fields it turns out to be 41.00 and 42.00 on field and it was resolved using fixed function on text field and&amp;nbsp;range should be anything between 41 and 42 like 41.4, 41.7, 41.9 but not 42.1&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to filter negative values from readonly grid</title><link>https://community.appian.com/thread/142098?ContentTypeID=1</link><pubDate>Thu, 24 Oct 2024 12:43:34 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:41a41e1b-cf77-4544-9f95-abcf6ca1889b</guid><dc:creator>Mike Schmitt</dc:creator><description>[quote userid="255133" url="~/discussions/f/general/37792/how-to-filter-negative-values-from-readonly-grid/142040"]example 41.4 and 42.3 then grid should display as 41.5, 41.9, 42.2 but not 42.9&amp;nbsp;[/quote]
&lt;p&gt;This sounds confusing to users (i.e. entering &amp;quot;42&amp;quot; would match &amp;quot;42.9&amp;quot;, but entering &amp;quot;42.1&amp;quot; wouldn&amp;#39;t match anything higher than 42.1) - however it should be possible to code.&amp;nbsp; in your filter logic you could take steps to determine whether the entered value is a non-decimal value (note i&amp;#39;m just talking about the value, not the data type), and if so, add 1 to the value when executing the filter; otherwise, don&amp;#39;t add anything to the value.&lt;/p&gt;
&lt;p&gt;As far as how to check whether the entered value is a non-decimal?&amp;nbsp; it&amp;#39;s not straightforward, usually there are tricks using the various math functions.&amp;nbsp; Maybe &amp;quot;floor(ri!num) = ceiling(ri!num)&amp;quot;, meaning if the number rounded up to the next integer is the same as the number rounded down to the next integer, which would only be true (afaik) when the starting number is already an integer.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to filter negative values from readonly grid</title><link>https://community.appian.com/thread/142061?ContentTypeID=1</link><pubDate>Thu, 24 Oct 2024 01:07:59 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:c5c9ebd1-dfe5-4583-b5e6-7aa0b009a4bb</guid><dc:creator>Kumar Agniwesh</dc:creator><description>&lt;p&gt;based on your screen shot, I am assuming when user is typing 42 then you need to show the values from 41 till 42.99, if so you would need to run the filter after incrementing the typed value by 1. in this case it is 43.&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to filter negative values from readonly grid</title><link>https://community.appian.com/thread/142041?ContentTypeID=1</link><pubDate>Wed, 23 Oct 2024 16:49:57 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:b262d320-9ea4-47d5-b8f1-d534ae7bf1fb</guid><dc:creator>vigneshkumarr</dc:creator><description>&lt;p&gt;Hi, please try the below code, as mike said increment that end value &amp;amp; check both &amp;lt; and &amp;gt;= in query filter with ri!latTo+ 1 and remove the extra query filter &amp;quot;between&amp;quot; query filter. Hope this will works for you.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;a!queryFilter(&lt;br /&gt; field: &amp;#39;recordType!{9441efd7-521a-4695-82a7-d661a237c67d}.fields.{499d2d44-21c8-41dc-a3be-2dbd3ee0356f}&amp;#39;,&lt;br /&gt; operator: &amp;quot;&amp;gt;=&amp;quot;,&lt;br /&gt; value: ri!latFrom,&lt;br /&gt; applyWhen: and(&lt;br /&gt; not(rule!APN_isEmpty(ri!latFrom)),&lt;br /&gt; rule!APN_isEmpty(ri!latTo)&lt;br /&gt; )&lt;br /&gt;),&lt;br /&gt;a!queryFilter(&lt;br /&gt; field: &amp;#39;recordType!{9441efd7-521a-4695-82a7-d661a237c67d}.fields.{499d2d44-21c8-41dc-a3be-2dbd3ee0356f}&amp;#39;,&lt;br /&gt; operator: &amp;quot;&amp;lt;=&amp;quot;,&lt;br /&gt; value: ri!latTo + 1,&lt;br /&gt; applyWhen: and(&lt;br /&gt; not(rule!APN_isEmpty(ri!latTo)),&lt;br /&gt; rule!APN_isEmpty(ri!latFrom)&lt;br /&gt; )&lt;br /&gt;),&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to filter negative values from readonly grid</title><link>https://community.appian.com/thread/142040?ContentTypeID=1</link><pubDate>Wed, 23 Oct 2024 16:49:46 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:fcca5dd4-868b-4bbe-a805-d470e88990f9</guid><dc:creator>appian.user</dc:creator><description>&lt;p&gt;so can you please tell me is it possible if:&lt;/p&gt;
&lt;p&gt;user enters single value in from and to : example 41 and 42 then grid should show value as 41, 41.5, 42, 42.9&lt;/p&gt;
&lt;p&gt;and if user enters decimal value in from to : example 41.4 and 42.3 then grid should display as 41.5, 41.9, 42.2 but not 42.9&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to filter negative values from readonly grid</title><link>https://community.appian.com/thread/142039?ContentTypeID=1</link><pubDate>Wed, 23 Oct 2024 16:44:50 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:f3704bc7-8fd0-40b2-b60b-0ef76b15365f</guid><dc:creator>Mike Schmitt</dc:creator><description>&lt;p&gt;I mean you can generally replace the &amp;quot;between&amp;quot; operation just by having &amp;quot;from&amp;quot; and &amp;quot;to&amp;quot; operations separately that both activate when they&amp;#39;re required - when both of them activate at the same time, they will &amp;quot;stack&amp;quot; with each other (presuming that your logicalExpression is using the &amp;quot;AND&amp;quot; joiner), and essentially behave like the &amp;quot;between&amp;quot; operation.&amp;nbsp; So it&amp;#39;s redundant.&amp;nbsp; But I assume this does not necessarily answer your main question here - just a tip for efficiency in coding filters.&lt;/p&gt;
[quote userid="255133" url="~/discussions/f/general/37792/how-to-filter-negative-values-from-readonly-grid/142038"]you mean to say my operator for both from to is correct only i have to remove between condition and to remove applywhen condition to specific from to else nothing to change right?[/quote]&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to filter negative values from readonly grid</title><link>https://community.appian.com/thread/142038?ContentTypeID=1</link><pubDate>Wed, 23 Oct 2024 16:18:31 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:11675cb5-66b3-4f73-864e-cfd3dc989297</guid><dc:creator>appian.user</dc:creator><description>&lt;p&gt;you mean to say my operator for both from to is correct only i have to remove between condition and to remove applywhen condition to specific from to else nothing to change right?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to filter negative values from readonly grid</title><link>https://community.appian.com/thread/142037?ContentTypeID=1</link><pubDate>Wed, 23 Oct 2024 15:39:32 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:42533681-81bf-488b-be91-7dd65f7fc9b0</guid><dc:creator>Mike Schmitt</dc:creator><description>[quote userid="255133" url="~/discussions/f/general/37792/how-to-filter-negative-values-from-readonly-grid/142034"]can you please tell me how can I apply on my code[/quote]
&lt;p&gt;I&amp;#39;m not sure I understand.&amp;nbsp; If you&amp;#39;re allowing the user to enter decimal filter values, the code you have here looks like it&amp;#39;ll work basically as expected.&lt;/p&gt;
&lt;p&gt;If a user enters &amp;quot;41.8&amp;quot; for instance on the &amp;quot;From&amp;quot; value, wouldn&amp;#39;t they expect to &lt;strong&gt;ONLY&lt;/strong&gt; see values from &amp;quot;41.8&amp;quot; and higher?&amp;nbsp; What are you expecting to happen that isn&amp;#39;t happening?&lt;/p&gt;
&lt;p&gt;As an aside, one other thing I&amp;#39;d point out is, you shouldn&amp;#39;t really need to do this bending-over-backwards to switch to the &amp;quot;between&amp;quot; operator; you can just use the &amp;quot;from&amp;quot; and &amp;quot;to&amp;quot; individual filters by themselves and when a user has both entered, they&amp;#39;ll simply &lt;em&gt;both apply&lt;/em&gt;, functionally taking care of a &amp;quot;between&amp;quot; operation on their own, and without having to have so many conditions on all the operators.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to filter negative values from readonly grid</title><link>https://community.appian.com/thread/142034?ContentTypeID=1</link><pubDate>Wed, 23 Oct 2024 15:17:08 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:71031490-02b7-4f15-9ed0-74348a3af43e</guid><dc:creator>appian.user</dc:creator><description>&lt;p&gt;can you please tell me how can I apply on my code:&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;here data type of lat from ,lat to and long from long to is decimal&lt;/p&gt;
&lt;p&gt;and On interface I&amp;nbsp;have taken floatingpointfield value&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;my UI looks like this&amp;nbsp;&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/11/pastedimage1729696585156v1.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;/*range between latitude from and latitude to*/

a!queryFilter(
        field: &amp;#39;recordType!{9441efd7-521a-4695-82a7-d661a237c67d}SLS Site Sync.fields.{499d2d44-21c8-41dc-a3be-2dbd3ee0356f}absY&amp;#39;,
        operator: &amp;quot;&amp;gt;=&amp;quot;,
        value: ri!latFrom,
        applyWhen: and(
          not(
            rule!APN_isEmpty(ri!latFrom)
          ),
          rule!APN_isEmpty(ri!latTo)
        ),
      ),
      a!queryFilter(
        field: &amp;#39;recordType!{9441efd7-521a-4695-82a7-d661a237c67d}SLS Site Sync.fields.{499d2d44-21c8-41dc-a3be-2dbd3ee0356f}absY&amp;#39;,
        operator: &amp;quot;&amp;lt;=&amp;quot;,
        value: ri!latTo,
        applyWhen: and(
          not(
            rule!APN_isEmpty(ri!latTo)
          ),
          rule!APN_isEmpty(ri!latFrom)
        ),
      ),
      a!queryFilter(
        field: &amp;#39;recordType!{9441efd7-521a-4695-82a7-d661a237c67d}SLS Site Sync.fields.{499d2d44-21c8-41dc-a3be-2dbd3ee0356f}absY&amp;#39;,
        operator: &amp;quot;between&amp;quot;,
        value: {
          ri!latFrom,
          ri!latTo
          },
          applyWhen: and(
            not(isnull(ri!latFrom)),
            not(isnull(ri!latTo))
          ),
      ),
      
      
     /* range between longitude from and longitude to*/
     
           a!queryFilter(
        field: &amp;#39;recordType!{9441efd7-521a-4695-82a7-d661a237c67d}SLS Site Sync.fields.{eb9a14a1-50e1-4d5a-9d81-ca3a8db3563c}absX&amp;#39;,
        operator: &amp;quot;&amp;gt;=&amp;quot;,
        value: ri!longFrom,
        applyWhen: and(
          not(
            rule!APN_isEmpty(ri!longFrom)
          ),
          rule!APN_isEmpty(ri!longTo)
        ),
      ),
      a!queryFilter(
        field: &amp;#39;recordType!{9441efd7-521a-4695-82a7-d661a237c67d}SLS Site Sync.fields.{eb9a14a1-50e1-4d5a-9d81-ca3a8db3563c}absX&amp;#39;,
        operator: &amp;quot;&amp;lt;=&amp;quot;,
        value: ri!longTo,
        applyWhen: and(
          not(
            rule!APN_isEmpty(ri!longTo)
          ),
          rule!APN_isEmpty(ri!longFrom)
        ),
      ),
      a!queryFilter(
        field: &amp;#39;recordType!{9441efd7-521a-4695-82a7-d661a237c67d}SLS Site Sync.fields.{eb9a14a1-50e1-4d5a-9d81-ca3a8db3563c}absX&amp;#39;,
        operator: &amp;quot;between&amp;quot;,
        value: {
          ri!longFrom,
          ri!longTo
        },
        applyWhen: and(
          not(isnull(ri!longFrom)),
          not(isnull(ri!longTo))
        ),
      ),&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to filter negative values from readonly grid</title><link>https://community.appian.com/thread/142033?ContentTypeID=1</link><pubDate>Wed, 23 Oct 2024 15:08:29 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:47f51e85-b7ed-40bb-9830-ee98b44d50bb</guid><dc:creator>Mike Schmitt</dc:creator><description>[quote userid="255133" url="~/discussions/f/general/37792/how-to-filter-negative-values-from-readonly-grid/142032"]42 then grid will display value between 41 and 43?[/quote]
&lt;p&gt;If the user enters an upper value of 42 and you add 1 to it when actually performing the filter, as in my example code above, and the operator is &amp;quot;&amp;lt;&amp;quot;, that means any values less than 43 will be returned, up to and including i.e. &amp;quot;42.999&amp;quot; etc.&amp;nbsp; For the lower-end filter you would want to use the &amp;quot;&amp;gt;=&amp;quot; filter and just pass the user&amp;#39;s original value, i.e. it would start matching values at 41 and all incrementals above that (41.00001, 41.3, 41.9, 42, 42.5, etc).&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to filter negative values from readonly grid</title><link>https://community.appian.com/thread/142032?ContentTypeID=1</link><pubDate>Wed, 23 Oct 2024 15:05:42 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:06d48887-f5bd-4e23-a6ce-b22847697a1c</guid><dc:creator>appian.user</dc:creator><description>&lt;p&gt;but according to the above solution result could be like this:&lt;/p&gt;
&lt;p&gt;if user enters 41 and 42 then grid will display value between 41 and 43?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to filter negative values from readonly grid</title><link>https://community.appian.com/thread/142027?ContentTypeID=1</link><pubDate>Wed, 23 Oct 2024 14:42:24 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:1d0b76dd-0197-47ed-b6b3-016ee1039c23</guid><dc:creator>Mike Schmitt</dc:creator><description>[quote userid="255133" url="~/discussions/f/general/37792/how-to-filter-negative-values-from-readonly-grid/142024"]you mean to say i have to use sum() add 1 to selected value ?[/quote]
&lt;p&gt;sum() doesn&amp;#39;t really play into this.&amp;nbsp; you can simply add 1 to the user-entered value when feeding it into your queryFilter.&amp;nbsp; If you&amp;#39;re not sure how to do that, you can post the actual code from your queryfilter and i can tell you how to modify it.&amp;nbsp; Generally you&amp;#39;d put something like,&lt;/p&gt;
&lt;p&gt;a!queryFilter(&lt;br /&gt;&amp;nbsp; field: &amp;quot;latitude&amp;quot;,&lt;br /&gt;&amp;nbsp; operator: &amp;quot;&amp;lt;&amp;quot;,&lt;br /&gt;&amp;nbsp; value: ri!userSelectedValue + 1&lt;br /&gt;)&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to filter negative values from readonly grid</title><link>https://community.appian.com/thread/142025?ContentTypeID=1</link><pubDate>Wed, 23 Oct 2024 14:29:32 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:8ee35b05-7360-48b3-992a-4e30af978421</guid><dc:creator>appian.user</dc:creator><description>&lt;p&gt;thankyou&amp;nbsp;&lt;a href="/members/bajib0001"&gt;baji mekala&lt;/a&gt;&amp;nbsp; for responding&amp;nbsp;&lt;/p&gt;
&lt;p&gt;hi mike thankyou for responding&lt;br /&gt;&lt;br /&gt;my requirement is I have to make a filter for latitude and longitude as latitude from latitude to and longitude from longitude to when user put some values in latitude from and latitude to then it filters the values between those values from grid&lt;/p&gt;
&lt;p&gt;for reference :&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img style="max-height:240px;max-width:320px;" alt=" " src="/resized-image/__size/640x480/__key/communityserver-discussions-components-files/11/pastedimage1729686963454v2.png" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;here i&amp;nbsp;want values above 42 as well like 42.2 but just getting values between 41 and 42&lt;br /&gt;if there is any solution please let me know&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to filter negative values from readonly grid</title><link>https://community.appian.com/thread/142024?ContentTypeID=1</link><pubDate>Wed, 23 Oct 2024 14:27:55 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:1433efdd-9018-40e6-9f75-02b47722dcae</guid><dc:creator>appian.user</dc:creator><description>&lt;p&gt;I didnt get you, you mean to say i have to use sum() add 1 to selected value ?&lt;/p&gt;
&lt;p&gt;as I have tried on selectedvalue as&lt;/p&gt;
&lt;p&gt;sum(local!selectedLatititudeTo,0.9)&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to filter negative values from readonly grid</title><link>https://community.appian.com/thread/142022?ContentTypeID=1</link><pubDate>Wed, 23 Oct 2024 13:42:41 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:222afcb1-41e3-4207-b880-faa6cc4c2e18</guid><dc:creator>Mike Schmitt</dc:creator><description>[quote userid="255133" url="~/discussions/f/general/37792/how-to-filter-negative-values-from-readonly-grid/142020"]but the requirement is that user can enter any value like 41 and 42 but grid should give values till 42.99 [/quote]
&lt;p&gt;ok, and that&amp;#39;s why i said this:&lt;/p&gt;
[quote userid="50400" url="~/discussions/f/general/37792/how-to-filter-negative-values-from-readonly-grid/142017"]Or you could just override the filter value and add 1 to whatever the user enters, so it would match all values up to the next higher integer [/quote]
&lt;p&gt;Did you try that already?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to filter negative values from readonly grid</title><link>https://community.appian.com/thread/142020?ContentTypeID=1</link><pubDate>Wed, 23 Oct 2024 13:29:53 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:2a201a24-12f9-4e7d-b610-7cb69985a11d</guid><dc:creator>appian.user</dc:creator><description>&lt;p&gt;but the requirement is that user can enter any value like 41 and 42 but grid should give values till 42.99 .&lt;/p&gt;
&lt;p&gt;is it possible to make chnages in expression rule so that if user puts 41 and 42 then grid could give values like 42.5 or something like that?&lt;/p&gt;
&lt;p&gt;user should be sorted in his mind if he enters value 41 and&amp;nbsp; 42 then any value around 42 will be populated like 42.2 or 42.4 etc&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to filter negative values from readonly grid</title><link>https://community.appian.com/thread/142019?ContentTypeID=1</link><pubDate>Wed, 23 Oct 2024 13:24:22 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:8e321b44-28ca-4fd0-8867-33e7d314c314</guid><dc:creator>appian.user</dc:creator><description>&lt;p&gt;thankyou prasanta for responding&amp;nbsp;&lt;/p&gt;
&lt;p&gt;hi mike thankyou for responding&lt;br /&gt;&lt;br /&gt;my requirement is I have to make a filter for latitude and longitude as latitude from latitude to and longitude from longitude to when user put some values in latitude from and latitude to then it filters the values between those values from grid&lt;/p&gt;
&lt;p&gt;for reference :&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img style="max-height:240px;max-width:320px;" alt=" " src="/resized-image/__size/640x480/__key/communityserver-discussions-components-files/11/pastedimage1729686963454v2.png" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;here i&amp;nbsp;want values above 42 as well like 42.2 but just getting values between 41 and 42&lt;br /&gt;if there is any solution please let me know&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to filter negative values from readonly grid</title><link>https://community.appian.com/thread/142018?ContentTypeID=1</link><pubDate>Wed, 23 Oct 2024 13:23:44 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:94b13dbc-a5f0-45d2-b0a3-ece531c4b751</guid><dc:creator>appian.user</dc:creator><description>&lt;p&gt;thankyou for responding&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;hi mike thankyou for responding&lt;br /&gt;&lt;br /&gt;my requirement is I have to make a filter for latitude and longitude as latitude from latitude to and longitude from longitude to when user put some values in latitude from and latitude to then it filters the values between those values from grid&lt;/p&gt;
&lt;p&gt;for reference :&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img style="max-height:240px;max-width:320px;" alt=" " src="/resized-image/__size/640x480/__key/communityserver-discussions-components-files/11/pastedimage1729686963454v2.png" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;here i&amp;nbsp;want values above 42 as well like 42.2 but just getting values between 41 and 42&lt;br /&gt;if there is any solution please let me know&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to filter negative values from readonly grid</title><link>https://community.appian.com/thread/142017?ContentTypeID=1</link><pubDate>Wed, 23 Oct 2024 13:17:03 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:7b5bd1d2-960e-4127-baf9-517954eaf04a</guid><dc:creator>Mike Schmitt</dc:creator><description>&lt;p&gt;if you want a value like 42.2 to be included then your &amp;quot;to&amp;quot; filter entry should be 43.&amp;nbsp; Or you could just override the filter value and add 1 to whatever the user enters, so it would match all values up to the next higher integer (you&amp;#39;d just need to test it well to make sure different corner cases work like you expect).&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to filter negative values from readonly grid</title><link>https://community.appian.com/thread/142015?ContentTypeID=1</link><pubDate>Wed, 23 Oct 2024 12:38:31 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:17421372-b99b-42f4-b9e7-3111cb98c6ac</guid><dc:creator>appian.user</dc:creator><description>&lt;p&gt;hi mike thankyou for responding&lt;br /&gt;&lt;br /&gt;my requirement is I have to make a filter for latitude and longitude as latitude from latitude to and longitude from longitude to when user put some values in latitude from and latitude to then it filters the values between those values from grid&lt;/p&gt;
&lt;p&gt;for reference :&amp;nbsp;&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/11/pastedimage1729686963454v2.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;here i&amp;nbsp;wan&amp;nbsp;values above 42 as well like 42.2 but just getting values between 41 and 42&lt;br /&gt;if there is any solution please let me know&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to filter negative values from readonly grid</title><link>https://community.appian.com/thread/141994?ContentTypeID=1</link><pubDate>Wed, 23 Oct 2024 05:54:44 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:ab1d1d3a-5b7c-41de-8018-906b314d171f</guid><dc:creator>baji mekala</dc:creator><description>&lt;p&gt;For testing purpose I used the some value&amp;nbsp;&lt;span&gt;and here is the result. Maybe it will be helpful for you.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;img style="max-height:240px;max-width:320px;" alt=" " src="/resized-image/__size/640x480/__key/communityserver-discussions-components-files/11/Screenshot-2024_2D00_10_2D00_23-111110.png" /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to filter negative values from readonly grid</title><link>https://community.appian.com/thread/141991?ContentTypeID=1</link><pubDate>Wed, 23 Oct 2024 04:59:44 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:ec3c6dad-4e39-4c5f-a680-36d9a31fd685</guid><dc:creator>Prasanta Paul</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/11/pastedimage1729659493269v1.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;Please ignore the field, I have used (-) in contact number just for testing purpose and here is the result. Maybe it will be helpful for you.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to filter negative values from readonly grid</title><link>https://community.appian.com/thread/141983?ContentTypeID=1</link><pubDate>Tue, 22 Oct 2024 21:48:23 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:0c152bc5-c349-4e47-9576-879af4c35951</guid><dc:creator>Kumar Agniwesh</dc:creator><description>&lt;p&gt;are you trying to filter values which does not match a condition. Example :- Filter values which are not equals to 1 or &amp;quot;ABC&amp;quot;, if so then using &amp;lt;&amp;gt;&amp;nbsp; operator might works for you.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Also you can use Appian query editor on top side of expression rule for guided development for writing these type of query.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to filter negative values from readonly grid</title><link>https://community.appian.com/thread/141982?ContentTypeID=1</link><pubDate>Tue, 22 Oct 2024 21:02:45 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:81c01924-d2a6-49b0-9f1f-dc3e4f777530</guid><dc:creator>Mike Schmitt</dc:creator><description>&lt;p&gt;Please share the actual code you&amp;#39;ve tried so we can make informed comments.&amp;nbsp; Generally an a!queryFilter(), when filtering on a numeric value, should accept the &amp;quot;&amp;lt;&amp;quot; operator just fine, but any number of other things could have gone wrong before it even gets that far, and it&amp;#39;s hard to guess without seeing exactly what you&amp;#39;ve tried and exactly what went wrong.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>