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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Ad of two columns doens't work

Hi all,

i have the following script:

TEST:

LOAD

     [Umsatz Soll] + [Umsatz Haben] as Umsatz_Gesamt

resident xxx;

But it doesn't work.

The column "Umsatz_Gesamt" ist empty.

Any ideas what i do wrong??

Thank u

1 Solution

Accepted Solutions
sunny_talwar

Does [Umsatz Soll] and [Umsatz Haben] include numbers? Are you trying to sum the two numbers up? May be try using RangeSum()

TEST:

LOAD

    RangeSum([Umsatz Soll], [Umsatz Haben]) as Umsatz_Gesamt

Resident xxx;

View solution in original post

4 Replies
vishsaggi
Champion III
Champion III

Try this?

LOAD

     [Umsatz Soll] & '-' & [Umsatz Haben] as Umsatz_Gesamt

resident xxx;

el_aprendiz111
Specialist
Specialist

Hi,

1 Example

Tab:
Load * inline [
Name, NameTwo
RR,ZZ
RR,HH
BB,JJ
CC,OO
BB,PP
]
;

Table:
LOAD Name & '-' & NameTwo as NewField
,*
Resident Tab;
Drop Table Tab;

awhitfield
Partner - Champion
Partner - Champion

Hi Robert,

what' the data in xxx look like?

andy

sunny_talwar

Does [Umsatz Soll] and [Umsatz Haben] include numbers? Are you trying to sum the two numbers up? May be try using RangeSum()

TEST:

LOAD

    RangeSum([Umsatz Soll], [Umsatz Haben]) as Umsatz_Gesamt

Resident xxx;