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: 
hammermill21
Creator III
Creator III

Pass or Fail Based on Total

Hello,

I am calculating a percentage:

=Num([Actual Load Percentage]/100,'0%')

Which gives me 54%, now based on that I want to add a column showing PASS or FAIL. So if the percentage is over 30% it passes and if it's under 30% it Fails. I've tried a few ways and it doesn't seem to be working. 

Anyone have any suggestions?

Thank you!

1 Solution

Accepted Solutions
sunny_talwar
MVP
MVP

My bad, I forgot to add the if(

=If([Actual Load Percentage] > 30, 'Pass', 'Fail')

View solution in original post

10 Replies
Anonymous
Not applicable

Can you duplicate the column, and wrap the statement in an IF statement.  Basically,

IF(Original Formula >30%, "Pass", "Fail")

sunny_talwar
MVP
MVP

should be just this

=[Actual Load Percentage] > 30, 'Pass', 'Fail')

hammermill21
Creator III
Creator III
Author

Hey SUnny,

I tried that but it gives me an error.

hammermill21
Creator III
Creator III
Author

Hi,

Yup tried that and also not working, getting an error.

sunny_talwar
MVP
MVP

Is this in a script or expression? Can you share a screenshot?

hammermill21
Creator III
Creator III
Author

I'm doing this as an expression.

sunny_talwar
MVP
MVP

screenshot?

hammermill21
Creator III
Creator III
Author

Sorry thought I attached it!Capture.JPG

sunny_talwar
MVP
MVP

My bad, I forgot to add the if(

=If([Actual Load Percentage] > 30, 'Pass', 'Fail')