Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Stefano2
Contributor
Contributor

Visual tab

Hi all,

please could you tell me what is the script in qlik sense to use the sumifs Excel formula?

so, to obtain A= 2, B=7, C= 5?

Category Month Values
A Jan 0
A Feb 2
A March 0
B Jan 1
B Feb 1
B March 5
C Jan 0
C Feb 0
C March 5

 

1 Solution

Accepted Solutions
AshutoshBhumkar
Partner - Specialist
Partner - Specialist

No SUM only should work.

SUM is the an aggregation function which calculates the total of the values given by the expression or field across the aggregated data.

🙂

 

Thanks,

Ashutosh

View solution in original post

12 Replies
abhijitnalekar
Specialist II
Specialist II

Hi @Stefano2 ,

 

Do you want to show the Category values in the KPI then you can use the below expressions

sum({<Category={'A'}>}Values) for A

sum({<Category={'B'}>}Values) for B

 

I hope I have understood the requirement correctly.

 

Regards,
Abhijit
keep Qliking...
Help users find answers! Don't forget to mark a solution that worked for you!
AshutoshBhumkar
Partner - Specialist
Partner - Specialist

Hello,

What exactly do you want to achieve ?

Are you trying to show this data in Table ? Then Dimension as Category and Measure as Sum(Values) will sum all the values for respective Categories.
or

You want to create the resulting table in script ?

 

Thanks,

Ashutosh

Stefano2
Contributor
Contributor
Author

Thanks,

but if I have a lot of categories and not only A,B,C how can i manage it?

Thanks a lot

Stefano2
Contributor
Contributor
Author

I would create a second table like the table below?  

How can  I do it?

Category Values
A 2
B 7
C 5

 

Thanks a lot

AshutoshBhumkar
Partner - Specialist
Partner - Specialist

If you are trying this table on straight table.

Dimension : Category, Measure : Sum(Values)

 

For script, you need to use group by clause like below

Load

Category,

Sum(Values) as Values

From[...............]

Group by Category;

Stefano2
Contributor
Contributor
Author

But that script works even if i m working in a visualization tab? 

Because it doesn't accept functions like Load or Group by

AshutoshBhumkar
Partner - Specialist
Partner - Specialist

You can use MultiKPI chart in that case.

Check out below link.

https://www.youtube.com/watch?v=OTlAw9YSpWo

[2.26]

AshutoshBhumkar
Partner - Specialist
Partner - Specialist

Load and Group by clause are for Scripting in Qlik sense.

Create a Straight Table->Add Dimension Category->Add Measure Sum(Values)

You will get below output.

Category Values
A 2
B 7
C 5
Stefano2
Contributor
Contributor
Author

is it possible in qlik sense the move or copy a table created in the visualization area to the data manager ? or the the data manager can be populed only by external files ?

 

Thanks for the help