<?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 In The Blank in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Fill-In-The-Blank/m-p/1441585#M432504</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;Is it possible to share sample file&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note : To learn qlik function you can use Help menu It will provide sample and syntax.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.qlik.com/en-US/qlikview/12.1/Subsystems/Client/Content/Scripting/ConditionalFunctions/if.htm" title="http://help.qlik.com/en-US/qlikview/12.1/Subsystems/Client/Content/Scripting/ConditionalFunctions/if.htm"&gt;if ‒ QlikView&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Prashant &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 09 Nov 2017 12:54:54 GMT</pubDate>
    <dc:creator>PrashantSangle</dc:creator>
    <dc:date>2017-11-09T12:54:54Z</dc:date>
    <item>
      <title>Fill In The Blank</title>
      <link>https://community.qlik.com/t5/QlikView/Fill-In-The-Blank/m-p/1441580#M432499</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am trying to create an expression within a dimension that populates a cell in a chart.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/182593_pastedImage_0.png" style="max-width: 1200px; max-height: 900px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The expression should look at the "Resolution Status" and the "Record Class" &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The "Record Type" field should have values there where values are not on the spreadsheet that is used as a source and need to be populated with either the name "Asset" or "Site" &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have tried different expressions that seem to be ok in syntax but do not fill in the empty fields in the Record Type column.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What I am trying to do is this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If([Resoluttion Status] = 'NEW" and [Record Class]='Router,1,0 [Record Type]='Asset') &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This maybe wrong above but I a trying to fill in the - with Asset or Site&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help is appreciated.&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, 08 Nov 2017 19:45:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Fill-In-The-Blank/m-p/1441580#M432499</guid>
      <dc:creator>pandreozzi</dc:creator>
      <dc:date>2017-11-08T19:45:58Z</dc:date>
    </item>
    <item>
      <title>Re: Fill In The Blank</title>
      <link>https://community.qlik.com/t5/QlikView/Fill-In-The-Blank/m-p/1441581#M432500</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try something like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;= IF([Resolution Status] = 'NEW" and [Record Class]='Router',&lt;/P&gt;&lt;P&gt;'Asset',&lt;/P&gt;&lt;P&gt;'Site')&lt;/P&gt;&lt;P&gt;Or use field names in places of the strings I used.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Nov 2017 19:50:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Fill-In-The-Blank/m-p/1441581#M432500</guid>
      <dc:creator>jrepucci15</dc:creator>
      <dc:date>2017-11-08T19:50:35Z</dc:date>
    </item>
    <item>
      <title>Re: Fill In The Blank</title>
      <link>https://community.qlik.com/t5/QlikView/Fill-In-The-Blank/m-p/1441582#M432501</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks John. I will try that and let you know if that worked. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Nov 2017 19:55:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Fill-In-The-Blank/m-p/1441582#M432501</guid>
      <dc:creator>pandreozzi</dc:creator>
      <dc:date>2017-11-08T19:55:40Z</dc:date>
    </item>
    <item>
      <title>Re: Fill In The Blank</title>
      <link>https://community.qlik.com/t5/QlikView/Fill-In-The-Blank/m-p/1441583#M432502</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I tried this in a couple of different places.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Under the Load and within the dimension for the cell and this still will not replace the hyphen - with the word Asset. The syntax seems to be correct as in both cases I do not get errors in the debug. I also tried using the "Case Where"&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;if&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[Resolution Status]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,'NEW' &amp;amp; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[Record Class]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,'Router'),&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[Record Type]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;='Asset' &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Nov 2017 12:44:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Fill-In-The-Blank/m-p/1441583#M432502</guid>
      <dc:creator>pandreozzi</dc:creator>
      <dc:date>2017-11-09T12:44:21Z</dc:date>
    </item>
    <item>
      <title>Re: Fill In The Blank</title>
      <link>https://community.qlik.com/t5/QlikView/Fill-In-The-Blank/m-p/1441584#M432503</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here is my expression within the dimension. If I can fix the syntax on this it may work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;If&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;IsNull&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[Record Type]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;),&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;if&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;DR01_Inactive_sites_with_installed_inventory&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;=1 &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;or&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;HR05_Invalid_CLLI&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;=1,'Site','Asset'),&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[Record Type]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;, if(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[Resolution Status]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;='NEW' and &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[Record Class]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;='Router'),&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[Record Type]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,'Asset') &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;any ideas will be appreciated&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Nov 2017 12:52:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Fill-In-The-Blank/m-p/1441584#M432503</guid>
      <dc:creator>pandreozzi</dc:creator>
      <dc:date>2017-11-09T12:52:30Z</dc:date>
    </item>
    <item>
      <title>Re: Fill In The Blank</title>
      <link>https://community.qlik.com/t5/QlikView/Fill-In-The-Blank/m-p/1441585#M432504</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;Is it possible to share sample file&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note : To learn qlik function you can use Help menu It will provide sample and syntax.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.qlik.com/en-US/qlikview/12.1/Subsystems/Client/Content/Scripting/ConditionalFunctions/if.htm" title="http://help.qlik.com/en-US/qlikview/12.1/Subsystems/Client/Content/Scripting/ConditionalFunctions/if.htm"&gt;if ‒ QlikView&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Prashant &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Nov 2017 12:54:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Fill-In-The-Blank/m-p/1441585#M432504</guid>
      <dc:creator>PrashantSangle</dc:creator>
      <dc:date>2017-11-09T12:54:54Z</dc:date>
    </item>
    <item>
      <title>Re: Fill In The Blank</title>
      <link>https://community.qlik.com/t5/QlikView/Fill-In-The-Blank/m-p/1441586#M432505</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;can you tell us logic of your if condition???&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Nov 2017 12:56:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Fill-In-The-Blank/m-p/1441586#M432505</guid>
      <dc:creator>PrashantSangle</dc:creator>
      <dc:date>2017-11-09T12:56:10Z</dc:date>
    </item>
    <item>
      <title>Re: Fill In The Blank</title>
      <link>https://community.qlik.com/t5/QlikView/Fill-In-The-Blank/m-p/1441587#M432506</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: Times New Roman; font-size: 12pt;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 8pt;"&gt;&lt;SPAN style="color: #000000; font-family: Calibri; font-size: 12pt;"&gt;Sure. I have two data sources, one being an excel spreadsheet and the other being a db. The chart is populated by both. In the event the router is in the spreadsheet the cells in the chart are populated correctly. If the router is not in the excel spreadsheet the Resolution Status cells will show “NEW” and the Record Class cells&amp;nbsp; “Router” when this happens the Record Type will be a hyphen. What I am attempting to do is key off the text “NEW” and the text “Router” and if this is true than replace the hyphen with the text “Asset”&lt;BR /&gt;&lt;BR /&gt;I have tried an "if" statement in the LOAD part of the script and have tried placing logic within the dimension and in both cases most of the time the syntax is correct by the results are not what is expected.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Thanks Prashant&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: Times New Roman; font-size: 12pt;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Nov 2017 13:21:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Fill-In-The-Blank/m-p/1441587#M432506</guid>
      <dc:creator>pandreozzi</dc:creator>
      <dc:date>2017-11-09T13:21:12Z</dc:date>
    </item>
    <item>
      <title>Re: Fill In The Blank</title>
      <link>https://community.qlik.com/t5/QlikView/Fill-In-The-Blank/m-p/1441588#M432507</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here is my if statement within the LOAD&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;if&lt;/SPAN&gt;&lt;STRONG style=": ; color: #ff0000; font-size: 8pt;"&gt;(&lt;/STRONG&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[Resolution Status]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;='NEW' &amp;amp; (&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[Record Class]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;='Router') &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;as&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;Asset_Router &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Nov 2017 13:23:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Fill-In-The-Blank/m-p/1441588#M432507</guid>
      <dc:creator>pandreozzi</dc:creator>
      <dc:date>2017-11-09T13:23:34Z</dc:date>
    </item>
    <item>
      <title>Re: Fill In The Blank</title>
      <link>https://community.qlik.com/t5/QlikView/Fill-In-The-Blank/m-p/1441589#M432508</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;As far as what i understood from explanation, below expression might help&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if([Resolution Status]='New' and [Record Class]='Router','Asset','Router')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Use it as expression in chart&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Regards,&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Nov 2017 13:32:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Fill-In-The-Blank/m-p/1441589#M432508</guid>
      <dc:creator>PrashantSangle</dc:creator>
      <dc:date>2017-11-09T13:32:01Z</dc:date>
    </item>
    <item>
      <title>Re: Fill In The Blank</title>
      <link>https://community.qlik.com/t5/QlikView/Fill-In-The-Blank/m-p/1441590#M432509</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Prashant, your example above works but changes the text 'Asset' to the text 'Router' where true. What I am trying to do is to replace the hyphen with the word Asset. I am pasting my example.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Currently [Record Type] has a value of -&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;if&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[Resolution Status]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;='NEW' &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;and&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[Record Class]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;='Router'&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;,'[&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;Record Type]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,'Asset') &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/182704_pastedImage_0.png" style="max-height: 900px; max-width: 1200px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Nov 2017 14:29:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Fill-In-The-Blank/m-p/1441590#M432509</guid>
      <dc:creator>pandreozzi</dc:creator>
      <dc:date>2017-11-09T14:29:28Z</dc:date>
    </item>
    <item>
      <title>Re: Fill In The Blank</title>
      <link>https://community.qlik.com/t5/QlikView/Fill-In-The-Blank/m-p/1441591#M432510</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There is syntax error always check bracket , single quote &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #0000ff;"&gt;if&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #800000;"&gt;[Resolution Status]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;='NEW' &lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #0000ff;"&gt;and&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #800000;"&gt;[Record Class]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;='Router'&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #0000ff;"&gt;,[&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #800000;"&gt;Record Type]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;,'Asset')&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Nov 2017 14:37:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Fill-In-The-Blank/m-p/1441591#M432510</guid>
      <dc:creator>PrashantSangle</dc:creator>
      <dc:date>2017-11-09T14:37:42Z</dc:date>
    </item>
    <item>
      <title>Re: Fill In The Blank</title>
      <link>https://community.qlik.com/t5/QlikView/Fill-In-The-Blank/m-p/1441592#M432511</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I did realize that syntax error and corrected it however the results are still the same. I am looking into using the "If Match" in my expression also. I will keep posting results and your assistance is much appreciated. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Nov 2017 14:46:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Fill-In-The-Blank/m-p/1441592#M432511</guid>
      <dc:creator>pandreozzi</dc:creator>
      <dc:date>2017-11-09T14:46:35Z</dc:date>
    </item>
  </channel>
</rss>

