Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
jmonroe918
Creator II
Creator II

Sum Quantity of Non-Null Records

I have a table similar to the attached spreadsheet.

I am trying to sum the "Qty Affected" column for the records that have an "IssueID" that is not blank or null.

I am having a tough time with the Expression.

Thanks.

Jeff

1 Solution

Accepted Solutions
sunny_talwar

Try this:

=Sum({<IssueID = {"=Len(Trim(IssueID)) > 0"}>}[Qty Affected])


Capture.PNG

View solution in original post

5 Replies
sunny_talwar

Try this:

=Sum({<IssueID = {"=Len(Trim(IssueID)) > 0"}>}[Qty Affected])


Capture.PNG

settu_periasamy
Master III
Master III

sunindia‌‌ Attachment is Blank. Can you replace it..

sunny_talwar

Thanks Settu‌ for pointing that out . I must have attached it before saving it.

settu_periasamy
Master III
Master III

Yes, i thought so.. 🙂

jmonroe918
Creator II
Creator II
Author

Thank you Sunny.

Jeff