Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
HI,
Suppose I have a loaded table with the column INCOME and based on certain filters I want to generate a new column that is, INCOME * 2. Is it possible to do this with Qlik Sense without having to write stored procedures? Basically, I want the results to be generated dynamically. What is the easiest way to work around this using Qlik Sense?
Thanks!
Hi,
You can do this in the LOAD script;
LOAD
INCOME,
INCOME * 2 As NEW_INCOME;
SQL SELECT
INCOME,
Other_Columns
FROM Your_Database;
Hope this helps
I will try it out! Thanks alot!
On Fri, Jun 24, 2016 at 6:43 AM, Sinan Ozdemir <qcwebmaster@qlikview.com>