Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
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)