Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Simple addition in script

Hallo to all,

how can I make a simple addition in QV Script - like FieldX = FieldX + Amount ?

Thanks in advance

Heinz

3 Replies
alexandros17
Partner - Champion III
Partner - Champion III

If Amount is a constant value:

Load

...

myField + Amount as myField

...

If Amount is a sum of the same or another table is a bit more complex, let me know

maxgro
MVP
MVP

load

.........

FieldX + Amount as FieldX

.....

;

LOAD data into QlikView

amit_saini
Master III
Master III

Hi Heinz,

You can call this as:

Myfield + Amount as Final_Result

Thanks,

AS