<?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: Create a calculated field after a Binary Load in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Create-a-calculated-field-after-a-Binary-Load/m-p/1794928#M62296</link>
    <description>&lt;P&gt;After Binary, all the tables will be in memory so you can reference them in a Load statement using the Resident keyword.&amp;nbsp; So if "Country" is in a table named "Countries" something like:&lt;/P&gt;&lt;P&gt;Left Join(Countries)&lt;BR /&gt;LOAD *,&amp;nbsp; if(len(Country) = 0, 'No Value', Country) as Country2&lt;BR /&gt;Resident Countries&lt;BR /&gt;;&lt;/P&gt;&lt;P&gt;Or any other kind of Load, NullAsValue, etc.&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;</description>
    <pubDate>Fri, 26 Mar 2021 17:58:43 GMT</pubDate>
    <dc:creator>rwunderlich</dc:creator>
    <dc:date>2021-03-26T17:58:43Z</dc:date>
    <item>
      <title>Create a calculated field after a Binary Load</title>
      <link>https://community.qlik.com/t5/App-Development/Create-a-calculated-field-after-a-Binary-Load/m-p/1794886#M62289</link>
      <description>&lt;P&gt;Hi Experts,&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a (in my view) straight forward question. Although I couldn't find the answer anywhere...&amp;nbsp;&lt;/P&gt;&lt;P&gt;Q:&amp;nbsp;&lt;STRONG&gt;How can I create a calculated field, after a binary load?&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Just Imagine that my code is this:&amp;nbsp;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Binary [lib://DailyManagement - my_test.qvw];&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;And that it has a dimension, called 'Country' .&amp;nbsp;&lt;/P&gt;&lt;P&gt;How can I create 'Country_2' which only replaces 1 value (NULL value to the text 'No value')&lt;/P&gt;&lt;P&gt;Many thanks in advance!&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 00:21:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Create-a-calculated-field-after-a-Binary-Load/m-p/1794886#M62289</guid>
      <dc:creator>Ray123</dc:creator>
      <dc:date>2024-11-16T00:21:43Z</dc:date>
    </item>
    <item>
      <title>Re: Create a calculated field after a Binary Load</title>
      <link>https://community.qlik.com/t5/App-Development/Create-a-calculated-field-after-a-Binary-Load/m-p/1794892#M62290</link>
      <description>&lt;P&gt;Maybe like this:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;BINARY test.qvw;

SET ThousandSep='.';
SET DecimalSep=',';
SET MoneyThousandSep='.';
SET MoneyDecimalSep=',';
SET MoneyFormat='#.##0,00 €;-#.##0,00 €';
SET TimeFormat='hh:mm:ss';
SET DateFormat='DD.MM.YYYY';
SET TimestampFormat='DD.MM.YYYY hh:mm:ss[.fff]';
SET FirstWeekDay=0;
SET BrokenWeeks=0;
SET ReferenceDay=4;
SET FirstMonthOfYear=1;
SET CollationLocale='de-DE';
SET MonthNames='Jan.;Feb.;März;Apr.;Mai;Juni;Juli;Aug.;Sep.;Okt.;Nov.;Dez.';
SET LongMonthNames='Januar;Februar;März;April;Mai;Juni;Juli;August;September;Oktober;November;Dezember';
SET DayNames='Mo.;Di.;Mi.;Do.;Fr.;Sa.;So.';
SET LongDayNames='Montag;Dienstag;Mittwoch;Donnerstag;Freitag;Samstag;Sonntag';


NULLASVALUE Country2;
SET NullValue = 'No value';
NoConcatenate
Final:
Load *, Country as Country2 Resident test;DROP table test;&lt;/LI-CODE&gt;</description>
      <pubDate>Fri, 26 Mar 2021 15:46:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Create-a-calculated-field-after-a-Binary-Load/m-p/1794892#M62290</guid>
      <dc:creator>Frank_Hartmann</dc:creator>
      <dc:date>2021-03-26T15:46:29Z</dc:date>
    </item>
    <item>
      <title>Re: Create a calculated field after a Binary Load</title>
      <link>https://community.qlik.com/t5/App-Development/Create-a-calculated-field-after-a-Binary-Load/m-p/1794928#M62296</link>
      <description>&lt;P&gt;After Binary, all the tables will be in memory so you can reference them in a Load statement using the Resident keyword.&amp;nbsp; So if "Country" is in a table named "Countries" something like:&lt;/P&gt;&lt;P&gt;Left Join(Countries)&lt;BR /&gt;LOAD *,&amp;nbsp; if(len(Country) = 0, 'No Value', Country) as Country2&lt;BR /&gt;Resident Countries&lt;BR /&gt;;&lt;/P&gt;&lt;P&gt;Or any other kind of Load, NullAsValue, etc.&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;</description>
      <pubDate>Fri, 26 Mar 2021 17:58:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Create-a-calculated-field-after-a-Binary-Load/m-p/1794928#M62296</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2021-03-26T17:58:43Z</dc:date>
    </item>
  </channel>
</rss>

