<?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: Changing Data Value from the Frontend of Qlik in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Changing-Data-Value-from-the-Frontend-of-Qlik/m-p/2449678#M97866</link>
    <description>&lt;P&gt;You could maybe use the function getfieldselections() which will input your selection - and depends on the volume you could use some if statements to counter what is visible in the values&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 07 May 2024 09:52:59 GMT</pubDate>
    <dc:creator>MATC</dc:creator>
    <dc:date>2024-05-07T09:52:59Z</dc:date>
    <item>
      <title>Changing Data Value from the Frontend of Qlik</title>
      <link>https://community.qlik.com/t5/App-Development/Changing-Data-Value-from-the-Frontend-of-Qlik/m-p/2449516#M97858</link>
      <description>&lt;P&gt;Hello,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have an app where i want to change the data value based on the user input from the dashboard. Say i have the following table below. How would i go about setting up a dashboard to where they can filter on the ID and Attribute to change the Value and I cant utilize a QVD (company reasons) or vizlib writeback functionality. My initial thought is a variable input and partial reload but any guidance is appreciated.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;TABLE style="border-collapse: collapse; width: 144pt;" border="0" width="192" cellspacing="0" cellpadding="0"&gt;
&lt;TBODY&gt;
&lt;TR style="height: 14.4pt;"&gt;
&lt;TD width="64" height="19" class="xl63" style="height: 14.4pt; width: 48pt;"&gt;ID&lt;/TD&gt;
&lt;TD width="64" class="xl63" style="border-left: none; width: 48pt;"&gt;Attribute&lt;/TD&gt;
&lt;TD width="64" class="xl63" style="border-left: none; width: 48pt;"&gt;Value&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 14.4pt;"&gt;
&lt;TD height="19" align="right" class="xl63" style="height: 14.4pt; border-top: none;"&gt;1&lt;/TD&gt;
&lt;TD class="xl63" style="border-top: none; border-left: none;"&gt;Color&lt;/TD&gt;
&lt;TD class="xl63" style="border-top: none; border-left: none;"&gt;Red&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 14.4pt;"&gt;
&lt;TD height="19" align="right" class="xl63" style="height: 14.4pt; border-top: none;"&gt;1&lt;/TD&gt;
&lt;TD class="xl63" style="border-top: none; border-left: none;"&gt;Age&lt;/TD&gt;
&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;21&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 14.4pt;"&gt;
&lt;TD height="19" align="right" class="xl63" style="height: 14.4pt; border-top: none;"&gt;2&lt;/TD&gt;
&lt;TD class="xl63" style="border-top: none; border-left: none;"&gt;Color&lt;/TD&gt;
&lt;TD class="xl63" style="border-top: none; border-left: none;"&gt;Green&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 14.4pt;"&gt;
&lt;TD height="19" align="right" class="xl63" style="height: 14.4pt; border-top: none;"&gt;2&lt;/TD&gt;
&lt;TD class="xl63" style="border-top: none; border-left: none;"&gt;Age&lt;/TD&gt;
&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;48&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 14.4pt;"&gt;
&lt;TD height="19" align="right" class="xl63" style="height: 14.4pt; border-top: none;"&gt;3&lt;/TD&gt;
&lt;TD class="xl63" style="border-top: none; border-left: none;"&gt;Color&lt;/TD&gt;
&lt;TD class="xl63" style="border-top: none; border-left: none;"&gt;Purple&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 14.4pt;"&gt;
&lt;TD height="19" align="right" class="xl63" style="height: 14.4pt; border-top: none;"&gt;3&lt;/TD&gt;
&lt;TD class="xl63" style="border-top: none; border-left: none;"&gt;Age&lt;/TD&gt;
&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;36&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If i select ID =1, Attribute = Color, Value change to Green then i want the table to read&lt;/P&gt;
&lt;TABLE style="border-collapse: collapse; width: 144pt;" border="0" cellspacing="0" cellpadding="0"&gt;
&lt;TBODY&gt;
&lt;TR style="height: 14.4pt;"&gt;
&lt;TD width="64" height="19" class="xl63" style="height: 14.4pt; width: 48pt;"&gt;ID&lt;/TD&gt;
&lt;TD width="64" class="xl63" style="border-left: none; width: 48pt;"&gt;Attribute&lt;/TD&gt;
&lt;TD width="64" class="xl63" style="border-left: none; width: 48pt;"&gt;Value&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 14.4pt;"&gt;
&lt;TD height="19" align="right" class="xl63" style="height: 14.4pt; border-top: none;"&gt;1&lt;/TD&gt;
&lt;TD class="xl63" style="border-top: none; border-left: none;"&gt;Color&lt;/TD&gt;
&lt;TD class="xl63" style="border-top: none; border-left: none;"&gt;Green&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 14.4pt;"&gt;
&lt;TD height="19" align="right" class="xl63" style="height: 14.4pt; border-top: none;"&gt;1&lt;/TD&gt;
&lt;TD class="xl63" style="border-top: none; border-left: none;"&gt;Age&lt;/TD&gt;
&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;21&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 14.4pt;"&gt;
&lt;TD height="19" align="right" class="xl63" style="height: 14.4pt; border-top: none;"&gt;2&lt;/TD&gt;
&lt;TD class="xl63" style="border-top: none; border-left: none;"&gt;Color&lt;/TD&gt;
&lt;TD class="xl63" style="border-top: none; border-left: none;"&gt;Green&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 14.4pt;"&gt;
&lt;TD height="19" align="right" class="xl63" style="height: 14.4pt; border-top: none;"&gt;2&lt;/TD&gt;
&lt;TD class="xl63" style="border-top: none; border-left: none;"&gt;Age&lt;/TD&gt;
&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;48&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 14.4pt;"&gt;
&lt;TD height="19" align="right" class="xl63" style="height: 14.4pt; border-top: none;"&gt;3&lt;/TD&gt;
&lt;TD class="xl63" style="border-top: none; border-left: none;"&gt;Color&lt;/TD&gt;
&lt;TD class="xl63" style="border-top: none; border-left: none;"&gt;Purple&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 14.4pt;"&gt;
&lt;TD height="19" align="right" class="xl63" style="height: 14.4pt; border-top: none;"&gt;3&lt;/TD&gt;
&lt;TD class="xl63" style="border-top: none; border-left: none;"&gt;Age&lt;/TD&gt;
&lt;TD align="right" class="xl63" style="border-top: none; border-left: none;"&gt;36&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;</description>
      <pubDate>Mon, 06 May 2024 22:47:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Changing-Data-Value-from-the-Frontend-of-Qlik/m-p/2449516#M97858</guid>
      <dc:creator>Asuod_</dc:creator>
      <dc:date>2024-05-06T22:47:58Z</dc:date>
    </item>
    <item>
      <title>Re: Changing Data Value from the Frontend of Qlik</title>
      <link>https://community.qlik.com/t5/App-Development/Changing-Data-Value-from-the-Frontend-of-Qlik/m-p/2449678#M97866</link>
      <description>&lt;P&gt;You could maybe use the function getfieldselections() which will input your selection - and depends on the volume you could use some if statements to counter what is visible in the values&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 07 May 2024 09:52:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Changing-Data-Value-from-the-Frontend-of-Qlik/m-p/2449678#M97866</guid>
      <dc:creator>MATC</dc:creator>
      <dc:date>2024-05-07T09:52:59Z</dc:date>
    </item>
  </channel>
</rss>

