<?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 dynamic currency conversion in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/dynamic-currency-conversion/m-p/2535324#M108509</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I need to do a dynaic currency conversion. In the attached data set there are two countires AUS and NZ.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Requirement&lt;/STRONG&gt;:&lt;/P&gt;&lt;P&gt;When AUD is the currency selected in the dashboard it should convert all NZ Product Rent from the file to AUD, and all Australian properties should display the identical figures to the data file.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Then vice versa when NZD is selected it should show the exact figures from the data file for those NZ prodcuts and the Australian property figures should be converted to NZD via currency conversion.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Attached a sample file.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 05 Nov 2025 04:32:45 GMT</pubDate>
    <dc:creator>Krish2459_58</dc:creator>
    <dc:date>2025-11-05T04:32:45Z</dc:date>
    <item>
      <title>dynamic currency conversion</title>
      <link>https://community.qlik.com/t5/App-Development/dynamic-currency-conversion/m-p/2535324#M108509</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I need to do a dynaic currency conversion. In the attached data set there are two countires AUS and NZ.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Requirement&lt;/STRONG&gt;:&lt;/P&gt;&lt;P&gt;When AUD is the currency selected in the dashboard it should convert all NZ Product Rent from the file to AUD, and all Australian properties should display the identical figures to the data file.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Then vice versa when NZD is selected it should show the exact figures from the data file for those NZ prodcuts and the Australian property figures should be converted to NZD via currency conversion.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Attached a sample file.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 05 Nov 2025 04:32:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/dynamic-currency-conversion/m-p/2535324#M108509</guid>
      <dc:creator>Krish2459_58</dc:creator>
      <dc:date>2025-11-05T04:32:45Z</dc:date>
    </item>
    <item>
      <title>Re: dynamic currency conversion</title>
      <link>https://community.qlik.com/t5/App-Development/dynamic-currency-conversion/m-p/2535327#M108511</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/175513"&gt;@Krish2459_58&lt;/a&gt;&amp;nbsp;, In this case, you can create a simple inline table with two columns: 'Currency Type' and 'Number', as shown below:&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;currency Type , Number&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;AUZ , 250&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;NZ , 120&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;Then, use the expression &lt;CODE&gt;SUM(Sales) / Number&lt;/CODE&gt; in your calculation. Based on the selected currency type, the formula will dynamically adjust—for example, if 'AUZ' is selected, it will compute &lt;CODE&gt;SUM(Sales) / 250&lt;/CODE&gt;;&lt;/P&gt;
&lt;P&gt;if 'NZ' is selected, it will compute &lt;CODE&gt;SUM(Sales) / 120&lt;/CODE&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 05 Nov 2025 04:58:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/dynamic-currency-conversion/m-p/2535327#M108511</guid>
      <dc:creator>Amit_Prajapati</dc:creator>
      <dc:date>2025-11-05T04:58:15Z</dc:date>
    </item>
    <item>
      <title>Re: dynamic currency conversion</title>
      <link>https://community.qlik.com/t5/App-Development/dynamic-currency-conversion/m-p/2535460#M108518</link>
      <description>&lt;P&gt;Hi Check below,&lt;/P&gt;&lt;P&gt;Here &lt;STRONG&gt;To&lt;/STRONG&gt; will be your Currency filter. Also you can create these variables in script and use instead of only statement in below If snippet:&lt;/P&gt;&lt;LI-CODE lang="php"&gt;LET vAUD_to_NZD = Peek('Rate', FieldIndex('To', 'NZD') - 1, 'ExchangeRates') ;
LET vNZD_to_AUD = Peek('Rate', FieldIndex('To', 'AUD') - 1, 'ExchangeRates');&lt;/LI-CODE&gt;&lt;LI-CODE lang="php"&gt;=If(
    GetSelectedCount(To) = 1 and GetFieldSelections(To) = 'AUD',
       Pick(Match(Currency,'AUD')+1,[Annual Rent] * Only({1&amp;lt;To={'NZD'}&amp;gt;} Rate),[Annual Rent]),
    If(
        GetSelectedCount(To) = 1 and GetFieldSelections(To) = 'NZD',
 Pick(Match(Currency,'NZD')+1,[Annual Rent] * Only({1&amp;lt;To={'AUD'}&amp;gt;} Rate),[Annual Rent]),
    // Default if no selection
    [Annual Rent]
    )
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 06 Nov 2025 08:56:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/dynamic-currency-conversion/m-p/2535460#M108518</guid>
      <dc:creator>HirisH_V7</dc:creator>
      <dc:date>2025-11-06T08:56:47Z</dc:date>
    </item>
  </channel>
</rss>

