Skip to main content
Announcements
Introducing a new Enhanced File Management feature in Qlik Cloud! GET THE DETAILS!
cancel
Showing results for 
Search instead for 
Did you mean: 
Sxbbb
Creator III
Creator III

I want to calculate Defect that Input must not be 0.

 
 

I want to calculate Defect that Input must not be 0.

Sxbbb_2-1690007646034.png

 


 

I tried the code : (if( Not IsNull(( Input_SQFT)),Sum(Defect_SQFT)))

But the values ​​are not shown in the Summary table.

Sxbbb_1-1690007606735.png

 

I want the value 104.6896 to show in the Summary table.

I want to calculate Defect that Input must not be 0.

1 Solution

Accepted Solutions
rubenmarin

Hi, you can try with: Sum({<Input_SQFT={"*"}>} Defect_SQFT)

View solution in original post

3 Replies
rubenmarin

Hi, you can try with: Sum({<Input_SQFT={"*"}>} Defect_SQFT)

BrunPierre
Partner - Master
Partner - Master

This could as well be a solution.

Sum({$<Input_SQFT={"=Len(Input_SQFT)>0"}>} Defect_SQFT)

Sxbbb
Creator III
Creator III
Author

thank you very much