<?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>date value is not null</title><link>https://community.appian.com/discussions/f/general/28340/date-value-is-not-null</link><description>I&amp;#39;m making an interface form with Appian. I&amp;#39;m making the form interactive. A textbox should only appear when specific variables are true. Appian offers a wonderful feature for this where you can add an expression to a &amp;quot;only show when&amp;quot; function. 
 It presently</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: date value is not null</title><link>https://community.appian.com/thread/111057?ContentTypeID=1</link><pubDate>Fri, 14 Apr 2023 05:59:58 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:a479d9aa-1b1f-442f-a86a-27805aba60be</guid><dc:creator>Stefan Helzle</dc:creator><description>&lt;p&gt;The ampersand character &amp;quot;&amp;amp;&amp;quot; is used to concatenate strings in Appian. Use the functions and() or or() to build logical expressions.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: date value is not null</title><link>https://community.appian.com/thread/111049?ContentTypeID=1</link><pubDate>Thu, 13 Apr 2023 20:50:39 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:e40fac87-0019-4d64-8455-af03f89541aa</guid><dc:creator>jameli0507</dc:creator><description>&lt;p&gt;Thank you for that&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: date value is not null</title><link>https://community.appian.com/thread/110850?ContentTypeID=1</link><pubDate>Tue, 11 Apr 2023 11:24:34 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:b82ae228-e131-4ed2-b64b-f977b822253d</guid><dc:creator>ujjwalr0002</dc:creator><description>&lt;p&gt;Hi, to check values are not null you can use&amp;nbsp;&lt;a href="https://docs.appian.com/suite/help/23.1/fnc_informational_isnullorempty.html"&gt;isNotNullOrEmpty&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Try to use the below code in your show when condition&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;and(
  edate(today(), - 804) &amp;gt;= ri!GeboorteDatum,
  a!isNotNullOrEmpty(ri!GeboorteDatum)
)&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: date value is not null</title><link>https://community.appian.com/thread/110848?ContentTypeID=1</link><pubDate>Tue, 11 Apr 2023 11:17:48 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:8e3f9747-810e-4dd1-8d11-01d1565401fa</guid><dc:creator>sanchitg0002</dc:creator><description>&lt;p&gt;You can wrap both expressions in and()&lt;/p&gt;
&lt;p&gt;I think you will be needing not null function instead of isnull()&lt;/p&gt;
&lt;p&gt;like:&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;and(
  edate(today(), - 804) &amp;gt;= ri!GeboorteDatum,
  a!isNotNullOrEmpty(ri!Geboortedatum)
)&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>