Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
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)