<?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: Translations in the Load Script in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Translations-in-the-Load-Script/m-p/1749696#M57667</link>
    <description>&lt;P&gt;Exactly what I needed Chris!&amp;nbsp; I did not want to hard code this.&amp;nbsp; Someone explained Mapping Load to me, like a vlookup.&amp;nbsp; I've always had a hard time with the syntax.&amp;nbsp;&amp;nbsp;ApplyMap('Translation', phrase, null()) as Translation;&amp;nbsp; So let me ask you this.&amp;nbsp; In this apply map is null() the default if there's no match?&lt;/P&gt;&lt;P&gt;Thank you so much!&lt;/P&gt;</description>
    <pubDate>Mon, 05 Oct 2020 17:00:20 GMT</pubDate>
    <dc:creator>crichter14</dc:creator>
    <dc:date>2020-10-05T17:00:20Z</dc:date>
    <item>
      <title>Translations in the Load Script</title>
      <link>https://community.qlik.com/t5/App-Development/Translations-in-the-Load-Script/m-p/1749673#M57665</link>
      <description>&lt;P&gt;My company is doing training sessions and each one has a Session_Name.&amp;nbsp; They have Session_ID's but those aren't unique.&lt;/P&gt;&lt;P&gt;Some of the names for the same course(s) are in German and Polish.&amp;nbsp; I need a way, in the load script, to translate from German to English, Polish to English.&amp;nbsp; I can use an if statement, but I'm afraid they will keep adding new sessions and new names so I need a way to let them put the data in excel sheet and translate it in the load script.&lt;/P&gt;&lt;P&gt;I know there are ways to do it in Qlik View, but I need Qlik Sense please.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm considering a mapping load from an excel file - but I've not used one before.&amp;nbsp; Can someone help me map it out - or point me to Qlik Sense post?&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;P&gt;c&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;IF(UPPER(SUBFIELD("Session Title",' - ',1)) = 'LAGERBESTAND NEU ERFINDEN: LAGER-STRATEGIEN', 'REINVENTING INVENTORY: STOCK STRATEGIES',&lt;BR /&gt;IF(UPPER(SUBFIELD("Session Title",' - ',1)) = 'PONOWNE SPOJRZENIE NA ASORTYMENT: STOCK STRATEGIES', 'REINVENTING INVENTORY: STOCK STRATEGIES',&lt;BR /&gt;IF(UPPER(SUBFIELD("Session Title",' - ',1)) = 'AUFSTEHEN UND WACHSEN: ERFOLGREICHE VERÄNDERUNG', 'RISE AND THRIVE: LEADING CHANGE',&lt;BR /&gt;IF(UPPER(SUBFIELD("Session Title",' - ',1)) = 'WZRASTAJ I ROZWIJAJ SIĘ : WIODĄCA ZMIANA', 'RISE AND THRIVE: LEADING CHANGE',&lt;BR /&gt;IF(UPPER(SUBFIELD("Session Title",' - ',1)) = 'DIE ZUKUNFT IST JETZT: GERÜSTET FÜR DEN ERFOLG', 'THE FUTURE IS NOW: EQUIPPED FOR SUCCESS',&lt;BR /&gt;IF(UPPER(SUBFIELD("Session Title",' - ',1)) = 'PRZYSZŁOŚĆ JEST TERAZ: BĄDŹ PRZYGOTOWANA NA SUKCES', 'THE FUTURE IS NOW: EQUIPPED FOR SUCCESS',&lt;BR /&gt;UPPER(SUBFIELD("Session Title",' - ',1))))))))&lt;BR /&gt;AS SESSION_NAME,&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 18:00:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Translations-in-the-Load-Script/m-p/1749673#M57665</guid>
      <dc:creator>crichter14</dc:creator>
      <dc:date>2024-11-16T18:00:57Z</dc:date>
    </item>
    <item>
      <title>Re: Translations in the Load Script</title>
      <link>https://community.qlik.com/t5/App-Development/Translations-in-the-Load-Script/m-p/1749692#M57666</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I think mapping load is the the same in QlikView script vs Qlik Sense, detailled here;&lt;/P&gt;&lt;P&gt;&lt;A href="https://help.qlik.com/en-US/sense/September2020/Subsystems/Hub/Content/Sense_Hub/Scripting/use-mapping-as-alternative-join.htm" target="_blank"&gt;https://help.qlik.com/en-US/sense/September2020/Subsystems/Hub/Content/Sense_Hub/Scripting/use-mapping-as-alternative-join.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;So you would do something like in the toy application attached.&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Chris.&lt;/P&gt;</description>
      <pubDate>Mon, 05 Oct 2020 16:28:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Translations-in-the-Load-Script/m-p/1749692#M57666</guid>
      <dc:creator>chrismarlow</dc:creator>
      <dc:date>2020-10-05T16:28:03Z</dc:date>
    </item>
    <item>
      <title>Re: Translations in the Load Script</title>
      <link>https://community.qlik.com/t5/App-Development/Translations-in-the-Load-Script/m-p/1749696#M57667</link>
      <description>&lt;P&gt;Exactly what I needed Chris!&amp;nbsp; I did not want to hard code this.&amp;nbsp; Someone explained Mapping Load to me, like a vlookup.&amp;nbsp; I've always had a hard time with the syntax.&amp;nbsp;&amp;nbsp;ApplyMap('Translation', phrase, null()) as Translation;&amp;nbsp; So let me ask you this.&amp;nbsp; In this apply map is null() the default if there's no match?&lt;/P&gt;&lt;P&gt;Thank you so much!&lt;/P&gt;</description>
      <pubDate>Mon, 05 Oct 2020 17:00:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Translations-in-the-Load-Script/m-p/1749696#M57667</guid>
      <dc:creator>crichter14</dc:creator>
      <dc:date>2020-10-05T17:00:20Z</dc:date>
    </item>
  </channel>
</rss>

