Skip to main content
Announcements
Qlik Introduces a New Era of Visualization! READ ALL ABOUT IT
cancel
Showing results for 
Search instead for 
Did you mean: 
Raskolnikov
Contributor III
Contributor III

Other than <> in SUM

I want to do a calculation with a selection other than (<>) but it doesn't work for me, indicating the error in <>

 

Sum({<[Tipo]={'0'}, [Nombre]<>{'xxxxx}>} Peso)

 

 

 

 

 

2 Replies
rbartley
Specialist II
Specialist II

You appear to be missing a closing apostrophe

Sum({<[Tipo]={'0'}, [Nombre]<>{'xxxxx}>} Peso)

vs

Sum({<[Tipo]={'0'}, [Nombre]<>{'xxxxx'}>} Peso)

However, I suspect that was a typo when you created the post.

Instead of <> try =- So,

Sum({<[Tipo]={'0'}, [Nombre]=-{'xxxxx'}>} Peso)

 

 

Raskolnikov
Contributor III
Contributor III
Author

Thanks

 

Sum({<[Tipo]={'0'}, [Nombre]=-{'xxxxx'}>} Peso)

 

🙂