Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
risabhroy_03
Partner - Creator II
Partner - Creator II

Sum of multiple fields

I have 4 different columns and I want to sum all those four together like this in the data load editor

[A+B+C+D] as [Sum of all four].

 

Please help.

1 Solution

Accepted Solutions
rubenmarin

Hi, you just neead to add A+B+C+D as [Sum of all four]. If some can have null() values you can use RangeSum:

RangeSum(A,B,C,D) as [Sum of all four]

View solution in original post

1 Reply
rubenmarin

Hi, you just neead to add A+B+C+D as [Sum of all four]. If some can have null() values you can use RangeSum:

RangeSum(A,B,C,D) as [Sum of all four]