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

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Expression does not work with one text field

Hello All,

In the example, I have a text box with below expression. As you can see that I have comment out the ProcessingOfficeNm and the expression works fine, but if I remove the comment then the value is zero. Would someone please take a look at my Qlikview and tell me what cause this and how to fix it? Thank you for your help everyone.

='Baseline: ' &

num(Sum ({Baseline<SubjectNm={'NewBusinessEffDay'},

OwnerCd=Summary::OwnerCd,

UnderwritingCenterNm=Summary::UnderwritingCenterNm,

//ProcessingOfficeNm=Summary::ProcessingOfficeNm,

EmployeeName=Summary::EmployeeName,

ManagerName=Summary::ManagerName,

ReportingUnitCd=Summary::ReportingUnitCd>

}PolicyIssuanceCnt),' #,##0 ')

1 Solution

Accepted Solutions
vishsaggi
Champion III
Champion III

Bcoz there is no data in the ProcessingOfficeNm for Baseline SubjectNm = 'NewBusinessEffDay'

Hence the value 0.

Check that?

View solution in original post

2 Replies
vishsaggi
Champion III
Champion III

Bcoz there is no data in the ProcessingOfficeNm for Baseline SubjectNm = 'NewBusinessEffDay'

Hence the value 0.

Check that?

Not applicable
Author

Thank you!!