Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
n1ef5ng1
Creator
Creator

Custom value?

Is there any way I can create a custom value on the table that will affect the value?

DateNameSalaryAdjusted (Custom Column)New Salary
11 janjames1500201520
14 janmary22221112333
28 jan peter3333-
15 mayjon404000040040

The adjusted colum is the colum that I want user to input value that will affect the result of the salary on the pivot table,

is there anyway i can do that>

thanks

1 Reply
sivarajs
Specialist II
Specialist II

You can input values see the example below

1.Create input field (field you want use a input) in script

INPUTFIELD fieldname; // like how you create let, set field

2. After reloading in table

INPUTSUM(your input field)  //As field in step 1

3.For your new salary column use

inputsum(INPUTSUM(your input field))+Salary