Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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
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;
Try this?
LOAD
[Umsatz Soll] & '-' & [Umsatz Haben] as Umsatz_Gesamt
resident xxx;
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;
Hi Robert,
what' the data in xxx look like?
andy
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;