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: 
bsbernabe
Creator
Creator

Remove negative value using expression

Hello There,

In expression how to create to remove all negative value in 1 field is there a way about it?

Internal IDItemQuantity
368443U100805-1
9888U1004561

Best Regards,

Bing

Labels (1)
1 Solution

Accepted Solutions
sunny_talwar
MVP
MVP

May be using an if statement?

If(Quantity < 0, Null(), Quantity)

View solution in original post

1 Reply
sunny_talwar
MVP
MVP

May be using an if statement?

If(Quantity < 0, Null(), Quantity)