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

Announcements
Discover how organizations are unlocking new revenue streams: Watch 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

1 Solution

Accepted Solutions
sunny_talwar

May be using an if statement?

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

View solution in original post

1 Reply
sunny_talwar

May be using an if statement?

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