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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
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))



Labels (1)
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!