If you’re new to Qlik Sense, start with this Discussion Board and get up-to-speed quickly.
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 ?
temp:
load *,round(rangesum(X,Y,Z)) as K Inline [
X,Y,Z
2,5,12
3,6,13
4,7,14
];
temp:
load *,round(rangesum(X,Y,Z)) as K Inline [
X,Y,Z
2,5,12
3,6,13
4,7,14
];
How Can we write it dynamically in back end nd front end??