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

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

IF Statement

Would anyone be able to shed some light on the following expression. Its giving me a blank field on my Pivot Table. Is it a syntax error or something?

if

(

(

(

Many thanks

Patient Id = '1000402' and Date = '09-11-2010' , sum(ReportingFee) = '15.00', sum(ReportingFee))



1 Solution

Accepted Solutions
boorgura
Specialist
Specialist

Please try this:

if([Patient Id] = '1000402' and Date = '09-11-2010' , '15.00', sum(ReportingFee))

View solution in original post

2 Replies
boorgura
Specialist
Specialist

Please try this:

if([Patient Id] = '1000402' and Date = '09-11-2010' , '15.00', sum(ReportingFee))

Not applicable
Author

works fine now, thanks for that!