<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Fill blank within an if expression. in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Fill-blank-within-an-if-expression/m-p/112556#M7724</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for your response, however I am still a little bit unclear as to what to do.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to use these if statements: &lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Load*,If("LM" ='N/A N/A','Vacant',"LM") as "Line Manager",&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;If("LM -1" ='N/A N/A','Vacant',"LM -1") as "Line Manager -1";&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;But in addition, I do not only want N/A N/A to be replaced by vacant, but also null values to be replaced by vacant.&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;How would I have to change my if statement to include this extra requirement.&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 23 Aug 2018 09:27:13 GMT</pubDate>
    <dc:creator>robin_heijt</dc:creator>
    <dc:date>2018-08-23T09:27:13Z</dc:date>
    <item>
      <title>Fill blank within an if expression.</title>
      <link>https://community.qlik.com/t5/App-Development/Fill-blank-within-an-if-expression/m-p/112554#M7722</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My current syntax in my data load editor is this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load*,If("LM" ='N/A N/A','Vacant',"LM") as "Line Manager",&lt;/P&gt;&lt;P&gt;If("LM -1" ='N/A N/A','Vacant',"LM -1") as "Line Manager -1";&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will change the N/A (Black line) into Vacant which works fine for me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now I also have blank spaces (Yellow) next to N/A(See below):&lt;/P&gt;&lt;P&gt;&lt;IMG alt="merge.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/211548_merge.PNG" style="height: 136px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;How can I adapt the load editor to not only fill up N/A with Vacant, but also to fill the blanks with Vacant?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Aug 2018 16:41:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Fill-blank-within-an-if-expression/m-p/112554#M7722</guid>
      <dc:creator>robin_heijt</dc:creator>
      <dc:date>2018-08-22T16:41:11Z</dc:date>
    </item>
    <item>
      <title>Re: Fill blank within an if expression.</title>
      <link>https://community.qlik.com/t5/App-Development/Fill-blank-within-an-if-expression/m-p/112555#M7723</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Blanks are null()&lt;/P&gt;&lt;P&gt;so:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If (LM = null() , &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this will check if the fields are blank&lt;/P&gt;&lt;P&gt;the opposite would be: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LM &amp;lt;&amp;gt; null()&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;with those you can achieve what you want. &lt;/P&gt;&lt;P&gt;If you want a more clear answer, please explain more what you want to do. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Like, Mark as helpful and mark as correct if it is, it helps a lot!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Aug 2018 16:49:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Fill-blank-within-an-if-expression/m-p/112555#M7723</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-08-22T16:49:16Z</dc:date>
    </item>
    <item>
      <title>Re: Fill blank within an if expression.</title>
      <link>https://community.qlik.com/t5/App-Development/Fill-blank-within-an-if-expression/m-p/112556#M7724</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for your response, however I am still a little bit unclear as to what to do.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to use these if statements: &lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Load*,If("LM" ='N/A N/A','Vacant',"LM") as "Line Manager",&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;If("LM -1" ='N/A N/A','Vacant',"LM -1") as "Line Manager -1";&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;But in addition, I do not only want N/A N/A to be replaced by vacant, but also null values to be replaced by vacant.&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;How would I have to change my if statement to include this extra requirement.&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Aug 2018 09:27:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Fill-blank-within-an-if-expression/m-p/112556#M7724</guid>
      <dc:creator>robin_heijt</dc:creator>
      <dc:date>2018-08-23T09:27:13Z</dc:date>
    </item>
    <item>
      <title>Re: Fill blank within an if expression.</title>
      <link>https://community.qlik.com/t5/App-Development/Fill-blank-within-an-if-expression/m-p/112557#M7725</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Load*,If("LM" ='N/A N/A' or isnull(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;"LM"&lt;/SPAN&gt;),'Vacant',"LM") as "Line Manager",&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;If("LM -1" ='N/A N/A' or &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;or isnull(&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;"LM-1"&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;)&lt;/SPAN&gt;,'Vacant',"LM -1") as "Line Manager -1";&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Aug 2018 11:34:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Fill-blank-within-an-if-expression/m-p/112557#M7725</guid>
      <dc:creator>ValeriyaBartosh</dc:creator>
      <dc:date>2018-08-23T11:34:41Z</dc:date>
    </item>
    <item>
      <title>Re: Fill blank within an if expression.</title>
      <link>https://community.qlik.com/t5/App-Development/Fill-blank-within-an-if-expression/m-p/112558#M7726</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;This should be what you want.&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;The statement OR will make your if statement true if any of those checks are true. But will only be false if all of them are false.&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Load*,If("LM" ='N/A N/A' or &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;"LM" =&lt;/SPAN&gt;null(),'Vacant',"LM") as "Line Manager",&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;If("LM -1" ='N/A N/A' or &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;"LM -1"&lt;/SPAN&gt; = null(),'Vacant',"LM -1") as "Line Manager -1";&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;if you want more complex statements in the future, you can also put an if inside another.&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Like, Mark as helpful and mark as correct if it is, it helps a lot!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Aug 2018 12:21:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Fill-blank-within-an-if-expression/m-p/112558#M7726</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-08-23T12:21:59Z</dc:date>
    </item>
    <item>
      <title>Re: Fill blank within an if expression.</title>
      <link>https://community.qlik.com/t5/App-Development/Fill-blank-within-an-if-expression/m-p/112559#M7727</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Load *,&lt;/P&gt;&lt;P&gt;If(Match("LM",'N/A N/A',''),'Vacant',"LM") as "Line Manager",&lt;/P&gt;&lt;P&gt;If(Match("LM -1",'N/A N/A',''),'Vacant',"LM -1") as "Line Manager -1";&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Aug 2018 15:10:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Fill-blank-within-an-if-expression/m-p/112559#M7727</guid>
      <dc:creator>BalaBhaskar_Qlik</dc:creator>
      <dc:date>2018-08-23T15:10:17Z</dc:date>
    </item>
  </channel>
</rss>

