Skip to main content

New to Qlik Sense

If you’re new to Qlik Sense, start with this Discussion Board and get up-to-speed quickly.

Announcements
Qlik Cloud Maintenance is scheduled between March 27-30. Visit Qlik Cloud Status page for more details.
cancel
Showing results for 
Search instead for 
Did you mean: 
flyhigh15
Contributor III
Contributor III

Qliksense rangesum aggr previous

load * Inline [
X,Y,Z,ROUND(K)
2,5,12,
3,6,13,
4,7,14,
];

How to get sum(X),sum(X)+(Y), sumX+sum Y+sumZ  each in one field?? and how to get round Of all values in one field ?

 

Labels (2)
1 Solution

Accepted Solutions
vinieme12
Champion III
Champion III

temp:
load *,round(rangesum(X,Y,Z)) as K Inline [
X,Y,Z
2,5,12
3,6,13
4,7,14
];

Vineeth Pujari
If a post helps to resolve your issue, please accept it as a Solution.

View solution in original post

2 Replies
vinieme12
Champion III
Champion III

temp:
load *,round(rangesum(X,Y,Z)) as K Inline [
X,Y,Z
2,5,12
3,6,13
4,7,14
];

Vineeth Pujari
If a post helps to resolve your issue, please accept it as a Solution.
flyhigh15
Contributor III
Contributor III
Author

How Can we write it dynamically in back end nd front end??