Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

scripting

Hi all 

this is the data which i have

nameno.
abc45
ddd130.5
eee22
rrr12
ttt9
yyy2.4
bbb1

i need output (sum of no.)

 

nameno.output
abc45221.9
ddd130.5221.9
eee22221.9
rrr12221.9
ttt9221.9
yyy2.4221.9
bbb1221.9

i want to achieve this in script

regards

1 Solution

Accepted Solutions
felipedl
Partner - Specialist III
Partner - Specialist III

Hi kulwant,

Say you have the table:

Data:

Load

     name,

     no.

From [Whatever];

join (Data)

Load

     sum(no.) as Sumation

resident Data;

That will put the total sum at every row of your data.

Felipe.

View solution in original post

1 Reply
felipedl
Partner - Specialist III
Partner - Specialist III

Hi kulwant,

Say you have the table:

Data:

Load

     name,

     no.

From [Whatever];

join (Data)

Load

     sum(no.) as Sumation

resident Data;

That will put the total sum at every row of your data.

Felipe.