Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
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